調整 maven
- 在 spring-boot-starter-web 中姑宽,去除 spring-boot-starter-tomcat
- 增加 spring-boot-starter-jetty 這個依賴
<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>
快速調試
為了可以快速的debug和測試履澳,可以加入 jetty-maven-plugin 這個plugin谓晌。
同時去掉 devtools像吻。
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>9.4.19.v20190610</version>
</plugin>
體會
使用Jetty茫舶,明顯感覺開發(fā)調試時熱部署的速度比 Tomcat 要快不少铭污。
空工程二者差距不明顯葛作。