views:

441

answers:

3

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.

A: 

What you mean is CRUD generating (CRUD: create, read, update, delete = typical admin interface). For example Rife can do this.

Mork0075
+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
A: 

Spring ROO is probably what you are looking for - it's a pure Java solution.

Liz