JAXB
-
Software Development
Approaches to XML – Part 3 – JAXB
If you remember from Part 1 and Part 2, I’m covering different approaches to parsing XML messages using the outrageously corny scenario…
Read More » -
Enterprise Java
JAXB Custom Binding – Java.util.Date / Spring 3 Serialization
JaxB can handle Java.util.Date serialization, but it expects the following format: “yyyy-MM-ddTHH:mm:ss“. What if you need to format the date…
Read More » -
Enterprise Java
XML unmarshalling benchmark: JAXB vs STax vs Woodstox
Introduction Towards the end of last week I started thinking how to deal with large amounts of XML data in…
Read More » -
Enterprise Java
GlassFish 3.1.2 is Full of MOXy (EclipseLink JAXB)
I am very happy to announce that EclipseLink JAXB (MOXy) is now a JAXB ( JSR-222) provider in GlassFish 3.1.2.…
Read More » -
Enterprise Java
JAXB and Unmapped Properties
JAXB (JSR-222) is configuration by exception, meaning that there is a default mapping applied to domain objects. This means that…
Read More » -
Enterprise Java
Implementing Active Record Pattern with Spring AOP
During class design we should take decisions about the assignment of responsibilities that will have every class. If we have…
Read More » -
Core Java
Make your JAXB cleaner with the MOXy implementation
The principle advantage of using JAXB when marshalling and demarshalling XML is the programming model. Simply annotate a few POJOs…
Read More » -
Core Java
JAXB, SAX, DOM Performance
This post investigates the performance of unmarshalling an XML document to Java objects using a number of different approaches. The…
Read More » -
Enterprise Java
Develop Restful web services using Spring MVC
REST INTRODUCTION From Wikipedia: REST-style architectures consist of clients and servers. Clients initiate requests to servers; servers process requests and…
Read More »