views:

81

answers:

2

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?

A: 

I think that using an ORM tool makes generating CRUDs easier. There is a recent question on SO concerning Java ORMs - which came out with Hibernate getting the most votes (although not using an ORM ranked fairly high!).

amelvin
+2  A: 

Grails is basically "Java on Rails," and the scaffolding behaves exactly as you would expect.

Dolph
While groovy code runs on the JVM, this is not Java
Pascal Thivent
I would assert that this *is* Java. It runs on the JVM.
Brian Agnew
Groovy is a superset of Java. Code in Java if you'd like.
Dolph