Administrator user interface for administering and viewing database entities?

Is there any good admin interface structure for generating data to create database views?

I am looking for an easily customizable framework that automatically detects my classes @Entity, connects to the database (for example postgres) and displays the contents in some managed admin servlet.

I know LightAdminwho works with spring-bootand is going in the right direction.

But, unfortunately, there are not enough basic functions (such as support for composite primary keys or custom actions in database rows - it provides viewing / editing / deleting of default actions for each row, which cannot be disabled at will!).

Is there an alternative to java?

+4
source share
2 answers

JBoss Forge , if you're fine with Java EE. There are add-ons that allow you to select the web structure that you want to use:

I also used it LightAdmin, but it turned out to be too unlimited and, unfortunately, was no longer actively supported.

+2
source

http://www.openxava.org/ CRUD JPA Entity.

+1

Source: https://habr.com/ru/post/1589420/


All Articles