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

Difference between revisions of "EclipseLink/Examples/MOXy/BVinJAXB"

(improved formatting)
(Added sections)
Line 1: Line 1:
 
==  Using EclipseLink Bean Validation in JAXB ==
 
==  Using EclipseLink Bean Validation in JAXB ==
 +
===Description===
 
'''Bean Validation in JAXB''' enables developing ''safe'' applications with:
 
'''Bean Validation in JAXB''' enables developing ''safe'' applications with:
 
* automatic '''runtime verification''' of Bean Validation constraints inside the marshalling framework,
 
* automatic '''runtime verification''' of Bean Validation constraints inside the marshalling framework,
Line 6: Line 7:
 
* '''translating''' between XML Facets and Bean Validation.
 
* '''translating''' between XML Facets and Bean Validation.
 
----
 
----
====How to:====
+
===How To===
 
* [[EclipseLink/Examples/MOXy/BVinJAXB/GettingStarted | Getting Started]]
 
* [[EclipseLink/Examples/MOXy/BVinJAXB/GettingStarted | Getting Started]]
 +
----
 +
===Docs===
 +
* [https://bugs.eclipse.org/bugs/attachment.cgi?id=252461 ER 431803: Bean Validation in MOXy - specification]
 +
* [https://bugs.eclipse.org/bugs/attachment.cgi?id=252463 ER 431803: Bean Validation in MOXy - presentation]
 +
----

Revision as of 07:03, 29 September 2015

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.

How To


Docs


Back to the top