Tagged Questions
2
votes
1answer
116 views
Why JAXB Moxy throws ArrayIndexOutOfBoundsException?
When using Moxy as the JAXB Implementation,
the following class leads to an exception:
@XmlRootElement(name="fraPage")
@XmlAccessorType(XmlAccessType.FIELD)
case class ...
2
votes
1answer
150 views
How do I un/marshall attributed elements in JAXB?
It seems like this should be fairly obvious, but I can't find anything on how to simply (un)marshall XML elements which also have attributes using JAXB.
In other words, I understand how to use JAXB ...
2
votes
1answer
224 views
How do I use Moxy from Scala?
This is a follow-on question from How to un/marshall underscored XML to/from camelcased Java using JAXB?
I'm trying to use Moxy (part of EclipseLink) from Scala (sbt 0.10.0), and am struggling to ...
