使用springboot时发现改了代码后容器不会自动重新编译,于是到官网找了一下相关内容http://docs.spring.io/spring-boot/docs/current/reference/html/howto-hotswapping.html
发现了spring-boot-devtools这个模块符合要求,只需要添加
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
即可。更多相关配置可以查阅http://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html