一般开发过程:
1)-写代码
2)- [Run As]→[Spring Boot App]启动服务
3)-页面确认
4)-修改代码
5)-通过控制台停止服务
6)- [Run As]→[Spring Boot App]再启动服务
7)-循环3)
这样重复的停止再启动服务是麻烦的。通过 Spring Loaded 或 SpringBoot Dev Tools 都可以实现热部署,无需重新启动即可生效。
1)SpringLoaded:JVM在运行中重新加载class。
下载springloaded-1.2.5.RELEASE.jar,[Run]→[Run Configurations..] 时设置VM arguments : -javaagent:
2)SpringBoot DevTools:监视classpath下的文件,如果有修改就自动重启服务。
pom.xml
org.springframework.boot spring-boot-devtools true
optional=true 表示依赖不会传递。devtools只对当前项目启用,而其他依赖该项目的项目,需要时需重新引入。
启动服务会看到以下Log:
引用
14:27:20.127 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Included patterns for restart : []
14:27:20.130 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Excluded patterns for restart : [/spring-boot-starter/target/classes/, /spring-boot-autoconfigure/target/classes/, /spring-boot-starter-[\w-]+/, /spring-boot/target/classes/, /spring-boot-actuator/target/classes/, /spring-boot-devtools/target/classes/]
14:27:20.130 [main] DEBUG org.springframework.boot.devtools.restart.ChangeableUrls - Matching URLs for reloading : [file:/D:/springbootsample/MybatisDemo/target/classes/]
14:27:20.130 [main] DEBUG org.springframework.boot.devtools.settings.DevToolsSettings - Excluded patterns for restart : [/spring-boot-starter/target/classes/, /spring-boot-autoconfigure/target/classes/, /spring-boot-starter-[\w-]+/, /spring-boot/target/classes/, /spring-boot-actuator/target/classes/, /spring-boot-devtools/target/classes/]
14:27:20.130 [main] DEBUG org.springframework.boot.devtools.restart.ChangeableUrls - Matching URLs for reloading : [file:/D:/springbootsample/MybatisDemo/target/classes/]
Eclipse开启了自动编译,在修改完Java代码保存后,后台就会看到服务自动重启了。
默认监听 classpath 下的文件变动,附加文件改变监听的话。
application.properties
引用
spring.devtools.restart.additional-paths=
Thymeleaf模板自动更新
引用
spring.thymeleaf.cache=false
spring.thymeleaf.prefix=file:///D:/springbootsample/MybatisDemo/src/main/resources/templates/
spring.thymeleaf.prefix=file:///D:/springbootsample/MybatisDemo/src/main/resources/templates/
静态资源自动更新
引用
spring.resources.cache-period=0
spring.resources.static-locations=file:///D:/springbootsample/MybatisDemo/src/main/resources/static/
spring.resources.static-locations=file:///D:/springbootsample/MybatisDemo/src/main/resources/static/
同时SpringBoot还启动了一个嵌入式LiveReload服务,服务器有修改是浏览器会自动刷新
引用
2017-02-16 14:27:24.153 INFO 5088 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
(2)部署阶段
生成可执行jar
pom.xml
org.springframework.boot spring-boot-maven-plugin true
引用
$ mvn clean package
$ java -jar your-app.jar
$ java -jar your-app.jar
your-app.jar/META-INF/MANIFEST.MF
引用
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.rensanning.springboot.MybatisDemoApplication
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
Start-Class: com.rensanning.springboot.MybatisDemoApplication
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
生成可执行war
pom.xml
war
pom.xml
org.springframework.boot spring-boot-starter-tomcat provided
pom.xml
org.springframework.boot spring-boot-maven-plugin
引用
$ mvn clean package
your-app.war/META-INF/MANIFEST.MF
引用
Main-Class: org.springframework.boot.loader.WarLauncher
Start-Class: com.rensanning.springboot.MybatisDemoApplication
Spring-Boot-Classes: WEB-INF/classes/
Spring-Boot-Lib: WEB-INF/lib/
Start-Class: com.rensanning.springboot.MybatisDemoApplication
Spring-Boot-Classes: WEB-INF/classes/
Spring-Boot-Lib: WEB-INF/lib/
避免和第三方容器冲突,嵌入式Tomcat的包会被放进WEB-INF/lib-provided,就既支持直接执行又支持放入第三方容器了。
依据Servlet 3.0标准,可以没有web.xml但需要一个WebApplicationInitializer的实现。
@SpringBootApplication public class Application extends SpringBootServletInitializer { public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder application) { return application.sources(Application.class); } }
引用
$ mvn clean package
$ java -jar your-app.war
$ java -jar your-app.war
但是并不建议打包成可执行的war,所以要将嵌入式Tomcat的包(WEB-INF/lib-provided)也从war包中去掉。
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-tomcat