@SpringBootApplication 怎么排除数据源引用
时间: 2023-08-12 12:15:05 浏览: 108
springboot使用@data注解减少不必要代码
如果在使用 Spring Boot 时想要排除默认的数据源引用,可以在 `@SpringBootApplication` 注解上使用 `exclude` 属性,指定要排除的配置类。例如:
```java
@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
public class MyApplication {
// ...
}
```
这样就会排除默认的数据源配置,从而避免不需要的数据源依赖被引入。
阅读全文