'DB administration site for Spring + JPA project

I would like to know how if there is any way to automatically generate a database administration site for a Spring + JPA project. It should take the annotated JPA entities and dynamically generate the site to keep track of any change in the domain Java classes.

I am looking for something similar to the Django admin site (I think you can also do the same with Ruby on Rails), that allows the user:

  • to see and update the data in the different tables without developing any extra code
  • to handle relations between tables, different kind of data (numbers, dates, etc)

In the Java world I am only aware of Spring Roo, but it does not fit my needs because I want to integrate it into an already existing third-party project.



Solution 1:[1]

Try Play! Framework's CRUD Module

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Guido