首页 > 其他分享 >spring boot 使用jetty作为内置服务器

spring boot 使用jetty作为内置服务器

时间:2022-10-01 16:46:21浏览次数:51  
标签:spring boot jetty springframework org starter

<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>

标签:spring,boot,jetty,springframework,org,starter
From: https://www.cnblogs.com/tutouchengxuyuan/p/16747381.html

相关文章