欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Spring Boot 使用备忘

程序员文章站 2022-03-31 10:27:01
...

1 配置

1.1 Spring Boot 指定运行配置文件

Spring Boot 使用备忘
当存在多个配置文件时,默认采用 application.yml(properties) 作为配置文件。
可以使用 spring.profiles.active=xxx 指定运行的版本

  • 命令行使用
	java -jar xx.jar --spring.profiles.active=test
  • IDEA 中设置 Spring boot 配置文件,两种方式略有不同
    Spring Boot 使用备忘Spring Boot 使用备忘

1.2 Spring boot 排除自动配置

排出自动配置 Datasource

@SpringBootApplication(exclude = {DataSourceAutoConfiguration.class})
@EnableAsync(proxyTargetClass = true)
@Slf4j
public class App{}