[b](1)开发阶段[/b]
一般开发过程:
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 : [b]-javaagent:<pathTo>/springloaded-1.2.5.RELEASE.jar -noverify[/b]。这样代码修改编译后1到2秒就会被重新加载,不过控制台没有log。但不支持增加class。
2)SpringBoot DevTools:监视classpath下的文件,如果有修改就自动重启服务。
pom.xml
[color=blue]optional=true 表示依赖不会传递。devtools只对当前项目启用,而其他依赖该项目的项目,需要时需重新引入。[/color]
启动服务会看到以下Log:
[quote]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/][/quote]
Eclipse开启了自动编译,在修改完Java代码保存后,后台就会看到服务自动重启了。
默认监听 classpath 下的文件变动,附加文件改变监听的话。
application.properties
[quote]spring.devtools.restart.additional-paths=[/quote]
Thymeleaf模板自动更新
[quote]spring.thymeleaf.cache=false
spring.thymeleaf.prefix=file:///D:/springbootsample/MybatisDemo/src/main/resources/templates/[/quote]
静态资源自动更新
[quote]spring.resources.cache-period=0
spring.resources.static-locations=file:///D:/springbootsample/MybatisDemo/src/main/resources/static/[/quote]
同时SpringBoot还启动了一个嵌入式LiveReload服务,服务器有修改是浏览器会自动刷新
[quote]2017-02-16 14:27:24.153 INFO 5088 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729[/quote]
[b](2)部署阶段[/b]
[b]生成可执行jar[/b]
pom.xml
[quote]$ mvn clean package
$ java -jar your-app.jar[/quote]
your-app.jar/META-INF/MANIFEST.MF
[quote]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/[/quote]
[b]生成可执行war[/b]
pom.xml
pom.xml
pom.xml
[quote]$ mvn clean package[/quote]
your-app.war/META-INF/MANIFEST.MF
[quote]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/[/quote]
避免和第三方容器冲突,嵌入式Tomcat的包会被放进WEB-INF/lib-provided,就既支持直接执行又支持放入第三方容器了。
依据Servlet 3.0标准,可以没有web.xml但需要一个WebApplicationInitializer的实现。
[quote]$ mvn clean package
$ java -jar your-app.war[/quote]
但是并不建议打包成可执行的war,所以要将嵌入式Tomcat的包(WEB-INF/lib-provided)也从war包中去掉。
一般开发过程:
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 : [b]-javaagent:<pathTo>/springloaded-1.2.5.RELEASE.jar -noverify[/b]。这样代码修改编译后1到2秒就会被重新加载,不过控制台没有log。但不支持增加class。
2)SpringBoot DevTools:监视classpath下的文件,如果有修改就自动重启服务。
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
[color=blue]optional=true 表示依赖不会传递。devtools只对当前项目启用,而其他依赖该项目的项目,需要时需重新引入。[/color]
启动服务会看到以下Log:
[quote]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/][/quote]
Eclipse开启了自动编译,在修改完Java代码保存后,后台就会看到服务自动重启了。
默认监听 classpath 下的文件变动,附加文件改变监听的话。
application.properties
[quote]spring.devtools.restart.additional-paths=[/quote]
Thymeleaf模板自动更新
[quote]spring.thymeleaf.cache=false
spring.thymeleaf.prefix=file:///D:/springbootsample/MybatisDemo/src/main/resources/templates/[/quote]
静态资源自动更新
[quote]spring.resources.cache-period=0
spring.resources.static-locations=file:///D:/springbootsample/MybatisDemo/src/main/resources/static/[/quote]
同时SpringBoot还启动了一个嵌入式LiveReload服务,服务器有修改是浏览器会自动刷新
[quote]2017-02-16 14:27:24.153 INFO 5088 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729[/quote]
[b](2)部署阶段[/b]
[b]生成可执行jar[/b]
pom.xml
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<executable>true</executable>
</configuration>
</plugin>
[quote]$ mvn clean package
$ java -jar your-app.jar[/quote]
your-app.jar/META-INF/MANIFEST.MF
[quote]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/[/quote]
[b]生成可执行war[/b]
pom.xml
<packaging>war</packaging>
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
pom.xml
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
[quote]$ mvn clean package[/quote]
your-app.war/META-INF/MANIFEST.MF
[quote]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/[/quote]
避免和第三方容器冲突,嵌入式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);
}
}
[quote]$ mvn clean package
$ java -jar your-app.war[/quote]
但是并不建议打包成可执行的war,所以要将嵌入式Tomcat的包(WEB-INF/lib-provided)也从war包中去掉。
<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>