Hey folks, hopefully a nice easy one here. I\'m generating classes with JAXB from a schema, and I\'d like to be able to process them with a Visitor pattern.
does Java 6 support legacy JAXB1 out of the box? According to JAXB guide, I can use JAXB1 with JAXB2 libraries, just add jaxb1-impl.jar to classpath. But it seems that this works only when using JAXB
In my current project I have a requirement where I need to build an xml document. I am planning to go with JAXB by creating the Java domain classes and marshall it i开发者_运维百科nto XML. IS this an
I am running into an issue with JAXB 2 when marshaling my objects. I have an XmlJavaTypeAdapter which is working perfectly fine in unit tests, but when I try to marshal the same object graph from a we
I want to create a simple web service in Eclipse (Helios J2EE), using Apache CXF 2.3.2 and Tomcat 7.
I have a web service that I am trying to implement using Spring and Jaxb.I already have a handful of working services using both ofthese - but this particular service is giving me a hard time due to t
I want to convert my pojo to json开发者_StackOverflow with JAXB, my pojo have one to many relation, and when i convert my pojo to json, JAXB generate error \"A cycle is detected in the object graph. T
I created my own class with a fromString method which I believe JAXB will use to convert the parameter value string to my object. However, inside this fromString meth开发者_如何学编程od, I have a try
I\'m looking for a synchronisation method to ensure my back-end data (xml file) is kept intact during multiple client access.
I\'m switching from Castor to JAXB2 to perform marshaling/unmarshaling between XML and Java object. I\'m having problem trying to configure a collection of polymorphic objects.