mirror of
https://github.com/dalbodeule/snap-admin.git
synced 2025-06-08 21:38:21 +00:00
WIP
This commit is contained in:
parent
24e271664a
commit
fd2d236e7a
14
README.md
14
README.md
@ -1,10 +1,18 @@
|
|||||||
# Spring Boot Database Admin Panel
|
# Spring Boot Database Admin Panel
|
||||||
|
|
||||||
An add-on for Spring Boot apps that automatically generates a database admin panel based on your `@Entity` annotated classes.
|
Generate a powerful CRUD management dashboard for your Spring Boot application in a few minutes.
|
||||||
The panel offers basic CRUD and search functionalities to manage the database.
|
|
||||||
|
Spring Boot Database Admin scans your `@Entity` classes to generate a simple but powerful database management interface.
|
||||||
|
|
||||||
[](https://i.imgur.com/Nz19f8e.png)
|
[](https://i.imgur.com/Nz19f8e.png)
|
||||||
|
|
||||||
|
Features:
|
||||||
|
* List objects with pagination and sorting
|
||||||
|
* Show detailed object page which also includes `@OneToMany`, `@ManyToMany`, etc... fields
|
||||||
|
* Create/Edit objects
|
||||||
|
* Search
|
||||||
|
* Customization
|
||||||
|
|
||||||
The code is in a very early version and I'm trying to collect as much feedback as possible in order to fix the
|
The code is in a very early version and I'm trying to collect as much feedback as possible in order to fix the
|
||||||
most common issues that will inevitably arise. If you are so kind to try the project and you find something
|
most common issues that will inevitably arise. If you are so kind to try the project and you find something
|
||||||
broken, please report it as an issue and I will try to take a look at it.
|
broken, please report it as an issue and I will try to take a look at it.
|
||||||
@ -17,7 +25,7 @@ broken, please report it as an issue and I will try to take a look at it.
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>tech.ailef</groupId>
|
<groupId>tech.ailef</groupId>
|
||||||
<artifactId>spring-boot-db-admin</artifactId>
|
<artifactId>spring-boot-db-admin</artifactId>
|
||||||
<version>0.0.3</version>
|
<version>0.0.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
2
pom.xml
2
pom.xml
@ -11,7 +11,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
<groupId>tech.ailef</groupId>
|
<groupId>tech.ailef</groupId>
|
||||||
<artifactId>spring-boot-db-admin</artifactId>
|
<artifactId>spring-boot-db-admin</artifactId>
|
||||||
<version>0.0.3</version>
|
<version>0.0.4</version>
|
||||||
<name>spring-boot-db-admin</name>
|
<name>spring-boot-db-admin</name>
|
||||||
<description>Srping Boot DB Admin Dashboard</description>
|
<description>Srping Boot DB Admin Dashboard</description>
|
||||||
<properties>
|
<properties>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user