We have a Java application with lots of config tables on the database (Oracle). We'd like to have Web-based GUIs for setting up these tables, that we currently update via SQL queries. What is the simplest way to develop CRUDs for a subset of our database? Is there any Java-based framework for doing this?
views:
81answers:
2
+2
A:
Grails is basically "Java on Rails," and the scaffolding behaves exactly as you would expect.
Dolph
2010-06-06 15:22:03
While groovy code runs on the JVM, this is not Java
Pascal Thivent
2010-06-06 15:54:35
I would assert that this *is* Java. It runs on the JVM.
Brian Agnew
2010-06-06 16:08:20
Groovy is a superset of Java. Code in Java if you'd like.
Dolph
2010-06-06 20:04:09