如何在Spring Boot中为servlet配置嵌入式jetty基础资源

时间:2015-11-20 08:28:17

标签: spring-boot

如何在Spring Boot中为servlet配置嵌入式jetty基础资源?

1 个答案:

答案 0 :(得分:0)

Spring Boot documentation包含有关嵌入式容器的非常好的信息。为了让Jetty成为您的嵌入式容器,您需要做的只是更新启动依赖项。所有其他配置应该是Servlet / Spring MVC应用程序的标准。

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