Creating a GUI for a Java Application

We currently have a requirement in which we must create a web application GUI. The user will add / modify the XML file, which will be analyzed by our application during the assembly to create classes related to the interface. The application must be on the Java platform. However, we are currently open to the choice of viewing technology. It could be JSP or flex something else that is suitable for java. Do we already have some open source framework that do the job?

+4
source share
2 answers

Apache Cocoon works this way - you are editing XML files that get XSLT-ed into HTML views.

+3
source

Have you tried GWT? It has an XML interface that you can use.

0
source

All Articles