使用Spring Boot进行热部署?

时间:2014-01-28 12:05:10

标签: java spring maven jetty spring-boot

通常我在使用Java Web项目的Jetty Maven插件时能够设置scanIntervalSeconds。现在我正在构建一个Spring Boot项目,并想知道是否可以实现热部署。我在官方的Spring文档中找不到任何内容。

有什么建议吗?

的pom.xml:

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
        <exclusions>
            <exclusion>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-tomcat</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-jetty</artifactId>
    </dependency>

0 个答案:

没有答案