SpringBoot 2.1.1.RELEASE集成devtools

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 集成MyBatis

SpringBoot 2.1.1.RELEASE集成devtools

SpringBoot 2.1.1.RELEASE 集成quartz

SpringBoot 2.1.1.RELEASE 集成Email

SpringBoot 2.1.1.RELEASE 集成log4j2

SpringBoot-整合Swagger2