springboot 之 使用jetty web容器

2018-06-18 00:43:45来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

springboot 中默认的web容器是tomcat。

在maven 的pom 文件中加入如下依赖,便可使用tomcat 容器。

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
</dependency>

 

如果想使用 jetty 作为 web容器,需要2步操作:

1.排除默认的tomcat 容器

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

2.加入 jetty 的 starter 依赖 

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-jetty</artifactId>
        </dependency>

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Java:JDBC的基本使用

下一篇:java web多组件协作实现用户登录验证