XML
-
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 » -
Software Development
Approaches to XML – Part 4 – XMLBeans
If you remember from Part 1, Part 2 and Part 3, I’m covering different approaches to parsing XML messages using…
Read More » -
Software Development
Approaches to XML – Part 2 – What about SAX?
Part 1 introduced the idea that there are different ways to approach XML parsing and highlighted the point that XML…
Read More » -
Software Development
Approaches to XML – Part 1 – XML is not a String…
XML has been around a long time: from memory, I’d guess that it’s about 12-14 years old by now; it’s…
Read More » -
Scala
Scala Basic XML processing
Introduction Pretty much everybody knows what XML is: it is a structured, machine-readable text format for representing information that can…
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 » -
Core Java
XML parsing using SaxParser with complete code
SAX parser use callback function (org.xml.sax.helpers.DefaultHandler) to informs clients of the XML document structure. You should extend DefaultHandler and override…
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 »