From e10396eeb2a42259d41967578d55544abc1637d9 Mon Sep 17 00:00:00 2001
From: Francesco 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.2.2.1 Known issues
+
+
+
@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).
+2.3 Supported features
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.
+ + + +