diff --git a/docs/index.html b/docs/index.html index a6cf532..ebebbf1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -313,7 +313,7 @@ public class Product { ... }
As mentioned earlier, the Settings panel primarily provides options to customize the branding/appearance of the web interface. These settings are persistent across restarts and are stored in an embedded H2 database (file named dbadmin_internal
), along with other data required by Spring Boot Database Admin.
Spring Boot Database Admin does not implement authentication and/or authorization mechanisms. However, you can use a standard Spring security configuration in order to limit access to the web UI or specific parts of it.
All Spring Boot Database Admin routes start with the value of dbadmin.baseUrl
property, and all write operations (edit, create, delete) are implemented as POST
calls. The following code provides an example security configuration (assuming Spring Boot Database Admin runs at /admin
):