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?
source
share