Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EclipseLink/Development/379706

< EclipseLink‎ | Development
Revision as of 16:09, 1 June 2012 by Rick.barkhouse.oracle.com (Talk | contribs) (New page: = Design Documentation: objectIdentitityCycleDetection = [http://bugs.eclipse.org/379706ER 379706] In the current JAXB RI, developed by Sun, there are a series of "proprietary" JAXB exte...)

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

Design Documentation: objectIdentitityCycleDetection

379706

In the current JAXB RI, developed by Sun, there are a series of "proprietary" JAXB extensions that are available to provide advanced JAXB functionality outside of the JAXB spec (these extension classes reside in the com.sun.xml.bind package).

The Marshaller property com.sun.xml.bind.objectIdentitityCycleDetection can be used to configure the strategy EclipseLink will use to detect an Object cycle. By default, EclipseLink will use Object identity to determine if a cycle exists; setting this property to false will tell EclipseLink to use the equals() method.


Example

Foo.

Back to the top