diff --git a/docs/index.html b/docs/index.html index ebebbf1..01a7e9c 100644 --- a/docs/index.html +++ b/docs/index.html @@ -333,8 +333,14 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { .build(); } +
+When setting up Spring Boot Database Admin for the first time, problems most commonly occur at startup, causing the application to stop. If this is the case, first check that you have correctly configured your application.properties
file. If everything is correct here, the problem might be related to one or more of your @Entity
classes (or the rest of your code in general) which might be using some unsupported feature and/or annotation.
+You can enable DEBUG
-level logs (e.g. with logging.level.root=DEBUG
) to pinpoint the cause error. Looking at those in combination with the stack trace should provide enough information to understand what is going wrong. Keep in mind that if the application doesn't start at all, it's probably a bug: you can open an issue on Github, providing the stacktrace, the debug logs and all other relevant information.