
Originally Posted by
henry
I'm building JMS communication layer in my spring application, which will directly send/receive or pub/sub to Tibco EMS. This part works fine. My next step is to convert my ArrayList of POJOs to XML and send it out...
I'm wondering so many different ways we can do the work, but which is the best way to do it?
- pure Java XML solution: DOM, SAX
- j2ee XML solution: JAXP, JAXB
- open source solution: castor, XMLBean, XStream...
- spring solution: oxm packages which wrapped the above things
Welcome any recommendations and advice.