springboot知识点补充(一)

大兔子大兔子 提交于 2020-01-28 13:43:39

测试配置

@RunWith(SpringRunner.class)
@SpringBootTest
@Configuration
@ActiveProfiles("test")
public class ApplicationTests {
    @Test
    public void test() {

    }
}
  • 测试类集成此类就可以实现读取测试的配置文件application-test.properties
  • 在application.properties中配置spring.profiles.active=dev,就可以读取application-dev.properties配置文件信息,在application.properties中可以写一些公共配置,dev中写特殊配置

idea热加载工具devtools工具生效

  1. 首先加pom
<!-- SpringBoot自带热加载开发工具 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-devtools</artifactId>
    <scope>runtime</scope>
</dependency>
  1. 在idea选项Compiler中把Build project automatically打钩
  2. 再快捷键shift+command+alt+/ 再选择registry,把compiler.automake.allow.when.app.running勾上
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!