I'm looking for a web framework or an application in Java that does what Django admin does - provides a friendly user interface for editing data in a relational database. I know it's possible to run Django on Jython and that way achieve a somewhat Java-based solution, but I'd prefer something pure-Java to keep the higher-ups happy.
+2
A:
Try Grails. It's a framework modeled after Django, written in Groovy. Groovy is a JVM based language, source-compatible with Java.
To get a Django-like admin interface, you write your models, let Grails generate all the rest (controllers and views), and you're done.
Some resources:
n0ha
2009-04-08 10:46:20
A:
Spring ROO is probably what you are looking for - it's a pure Java solution.
Liz
2010-07-21 14:52:26