This commit is contained in:
Francesco 2023-10-23 10:29:19 +02:00
parent 10af1b9020
commit 351b8e6396

View File

@ -22,6 +22,7 @@ for your database schema. No modifications required to your existing code (well,
* Advanced search and filtering
* Annotation-based customization
* Data export (CSV, XLSX)
* SQL console to run custom queries
**Supported JPA annotations**
@ -76,9 +77,13 @@ dbadmin.modelsPackage=your.models.package,your.second.models.package
## Whether to enable Spring Boot Database Admin
# dbadmin.enabled=true
#
#
## Set to true if you need to run the tests, as it will customize
## the database configuration for the internal DataSource
# dbadmin.testMode=false
#
## SQL console enable/disable (true by default)
# dbadmin.sqlConsoleEnabled=false
```
Now annotate your `@SpringBootApplication` class containing the `main` method with the following: