zoukankan      html  css  js  c++  java
  • springboot知识点补充(一)

    测试配置

    @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勾上
  • 相关阅读:
    Nosql database
    NoSQL
    nodejs and db
    Nodejs and json
    Nodejs异步
    HTTP-304 NOT Modified
    Origin null is not allowed by Access-Control-Allow-Origin
    nodejs MVC
    solr 亿万级数据查询性能測试
    iOS8 对开发人员来说意味着什么?
  • 原文地址:https://www.cnblogs.com/sky-chen/p/9911940.html
Copyright © 2011-2022 走看看