# SpringBoot 排除自动配置的 4 个方法
# 方法 1
使用 @SpringBootApplication 注解,用 exclude 属性进行排除指定的类:
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) | |
public class Application { | |
// ... | |
} |
# 方法 2
单独使用 @EnableAuthConfiguration 注解的时候:
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class}) | |
public class Application { | |
// ... | |
} |
# 方法 3
使用 @SpringCloudApplication 注解的时候:
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class}) | |
@SpringCloudApplication | |
public class Application { | |
// ... | |
} |
# 方法 4
中级方案,不管是 SpringBoot 还是 SpringCloud 都可以搞定,在配置文件中指定参数
spring.authconfigure.exclude 进行排除:
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration |
或者还可以这样写:
spring.autoconfigure.exclude[0]=org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration |
yml 配置格式:
spring: | |
autoconfigure: | |
exclude: | |
- org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration |