spring boot tomcat+jetty

Posted zhenghuasheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot tomcat+jetty相关的知识,希望对你有一定的参考价值。

spring boot 默认使用内置tomcat来启动服务,

默认启动端口是8080

可配置参数有如下:

#内嵌tomcat配置
server.port=8089
#server.context-path= //如果没有值就不配置,可以使用默认,但不要在这里留空,会有错误
server.tomcat.uri-encoding=UTF-8

#http encoding
spring.http.encoding.charset=UTF-8
spring.http.encoding.enabled=true
spring.http.encoding.force=true

具体可见springboot官方参数列表
http://docs.spring.io/spring-boot/docs/1.4.2.RELEASE/reference/htmlsingle/#howto-use-jetty-instead-of-tomcat

jetty启动

配置依旧生效,只需将jar的依赖调整

加入jetty的starter

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

排除

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

项目源码:https://github.com/zhenghuasheng/springboot-sample

以上是关于spring boot tomcat+jetty的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot如何使用内嵌式的Tomcat和Jetty?

28 | 新特性:Tomcat和Jetty如何处理Spring Boot应用?

如何告诉 Spring Boot 忽略 Jetty 并始终使用 Tomcat?

Day695.Spring Boot如何使用内嵌式的Tomcat和Jetty -深入拆解 Tomcat & Jetty

Spring Boot + Tomcat + Jetty - 应用程序无法启动

spring boot tomcat+jetty