I'm building an application where space is at a premium. I'd really like to use JAXB's unmarshalling capabilities, but including the whole library is out of the question. Has anyone pared it down so that only the bits needed for unmarshalling are included?
Asked
Active
Viewed 218 times
1 Answers
1
Is this for an application running on Java5 or earlier? JAXB is included as part of the Java6 JRE.
I don't think you'll have much luck trimming down JAXB, it wasn't designed for that. You may have better luck with a 3rd-party tool such as JiBX or Castor, though, which do much the same thing, and may be a bit more lightweight.

skaffman
- 398,947
- 96
- 818
- 769
-
It's running on an alternate JRE... should have mentioned that. – Jeremy Logan Jun 18 '10 at 19:18