天天看點

SpringBoot 2.1.1.RELEASE內建devtools

SpringBoot 2.1.1.RELEASE內建devtools

http://www.qchcloud.cn/system/article/show/74

引入依賴:

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
            <scope>true</scope>
            <version>2.0.4.RELEASE</version>
        </dependency>
           

設定:

SpringBoot 2.1.1.RELEASE內建devtools
SpringBoot 2.1.1.RELEASE內建devtools

繼續閱讀