11

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.

asked Apr 1, 2009 at 16:41

3 Answers 3

4

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:

answered Apr 8, 2009 at 10:46
Sign up to request clarification or add additional context in comments.

Comments

4

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

answered Jul 21, 2010 at 14:52

Comments

0

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

answered Apr 2, 2009 at 8:52

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.