Is there any way apart of XSTL which dynamically generates HTML form based on metadata specified inside a XML? Take note that I’m developing a JAVA web application here. There won’t be a lot of metadata inside the XML, which means that the XML is very simple. For worst case scenario, I would just build my own XML processor and generate HTML code with Java.
Share
Consider JAXB to map your XML to Java objects. Once you have the data in Java, you can plug it into the templating engine of your choice.