Digester & Vomiter
Hello, I'm a newbie here, see the topic about RSA in Cryptography...
I' d like to know what do you think about this idea of creating a tool to complement Commons-Digester so that we could not only to create Java objects from XML but also convert them to XML again...
http://br.geocities.com/renato3110/projects/xmlvomiter-en.html
The project is stopped for a long time, but what abou the idea? I know XStream but it uses reflection. XML Vomiter lets you take control of the mapping, and another idea that I had and it's not in the site is to configure that mapping using Annotations...
@XMLElement("person")
class Person{
@XMLElement
public String firstName ;
@XMLElement("last-name")
public String lastName;
@XMLAttribute
publicint age;
@XMLElement
public Person friend;
}
Message was edited by renatosilva
Message was edited by:
renatosilva

