@ -244,6 +244,9 @@ content into your application; rather pick only the properties that you need.
@@ -244,6 +244,9 @@ content into your application; rather pick only the properties that you need.
liquibase.default-schema= # default database schema to use
liquibase.drop-first=false
liquibase.enabled=true
liquibase.url= # specific JDBC url (if not set the default datasource is used)
liquibase.user= # user name for liquibase.url
liquibase.password= # password for liquibase.url
# JMX
spring.jmx.enabled=true # Expose MBeans from Spring
@ -1364,6 +1364,25 @@ You will get the best results if you put this in a nested class, or a standalone
@@ -1364,6 +1364,25 @@ You will get the best results if you put this in a nested class, or a standalone
order of instantiation). The {github-code}/spring-boot-samples/spring-boot-sample-web-secure[secure web sample]
is a useful template to follow.
If you experience instantiation issues (e.g. using JDBC or JPA for the user detail store)
it might be worth extracting the `AuthenticationManagerBuilder` callback into a
`GlobalAuthenticationConfigurerAdapter` (in the `init()` method so it happens before the
@ -199,9 +199,9 @@ exposed. For example, you could add the following to your `application.propertie
@@ -199,9 +199,9 @@ exposed. For example, you could add the following to your `application.propertie
@ -78,10 +78,7 @@ public class RunPluginFeatures implements PluginFeatures {
@@ -78,10 +78,7 @@ public class RunPluginFeatures implements PluginFeatures {