Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EclipseLink/Examples/MOXy/BVinJAXB

< EclipseLink‎ | Examples‎ | MOXy
Revision as of 05:44, 14 January 2016 by Marcelv3612.gmail.com (Talk | contribs) (explain effects of BV in JAXB)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Using EclipseLink Bean Validation in JAXB

Description

Bean Validation in JAXB enables developing safe applications with:

  • automatic runtime verification of Bean Validation constraints inside the marshalling framework,
  • automatic generation of Bean Validation metadata,
  • automatic generation of XML Facets,
  • translating between XML Facets and Bean Validation.

As such, it ensures that all objects entering or leaving the application via REST/WS or other marshalling means will only be let through if in valid state.


How To


Docs


Back to the top