diff --git a/docs/index.html b/docs/index.html index bbf7543..8e9a689 100644 --- a/docs/index.html +++ b/docs/index.html @@ -125,6 +125,11 @@ dbadmin.modelsPackage=your.models.package,your.second.models.package
This will autoconfigure the various Spring Boot Database Admin components when your application starts.
If everything is setup correctly, you will see Spring Boot Database Admin confirming it in the log messages that appear when you start your application. Keep in mind that if you specify the wrong models package, it will still work but provide you an empty interface. Visit http://localhost:8080/admin (replace the correct port and base path with your settings) to check if everything is working correctly.
+@Transactional
methods, you need to annotate your transaction manager with the @Primary
annotation, as you may otherwise get a NoUniqueBeanDefinitionException
(read here for more info).
+Disables the export functionality for this table.
+
+@Entity
+@Disable
+public class Payment { ... }
+
+
+Disables Spring Boot Database Admin on this table, by ignoring it during the initialization phase.
+ + + +