Tagged Questions
3
votes
1answer
311 views
Jaxb EclipseLink/MOXy : Is it possible to specify the names of get/set methods
I have a quite simple question :
Say I have a model class defined like this :
public class Test{
private String testAttribute;
public Test(){
}
public String ...
1
vote
1answer
246 views
JAXB-Eclipselink: Inherited properties
I have following use-case for marshalling a POJO to XML using Eclipselink MOXy 2.3:
public abstract class A {
public abstract getX();
}
public class B extends A {
private Foo x;
...
6
votes
1answer
4k views
Where to include jaxb.properties file?
I have REST (Jersey) webservice that makes use of some data objects that are marshalled/unmarshalled to/from XML. The data objects are in a separate project/jar that the webservice war depends on.
...