💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
有时我们不需要启用一些自动配置,可以采用下面两种方式之一进行关闭。 **1. 在代码中排除** ```java //关闭DataSourceAutoConfiguration自动配置 @SpringBootApplication(exclude = {DataSourceAutoConfiguration.class}) public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } } ``` **2. 在配置文件中排除** *application.yml* ```yml spring: autoconfigure: exclude: - org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration - org.springframework.boot.autoconfigure.aop.WebSocketMessagingAutoConfiguration ```