Spring Boot 资源文件配置(2)------- 配置server及tomcat

Spring Boot有自带的tomcat,但是我们也可以对她做一些适合自己的配置,这个配置在application.xml文件中修改对应的值即可
1. server的相关配置

#1.tomcat端口
server.port=8009
#2.一般正式发布时,不配置
server.servlet.context-path=/demo
#指定错误页面
server.error.path=/error
#设置session最大超时时间,默认为30分钟
#server.servlet.session.timeout=
#该服务绑定的IP地址
#server.address=Ip

2 . server-tomcat配置

#tomcat的编码
server.tomcat.uri-encoding=UTF-8
#tomcat最大连接数,默认200
server.tomcat.max-connections=250
#存放临时文件
#server.tomcat.basedir=路径
#打开tomcat 的access日志
#server.tomcat.accesslog.enabled=true
#设置access格式
#server.tomcat.accesslog.pattern=commen
#设置access路径
#server.tomcat.accesslog.directory=路径
#日志存放位置
#logging.path=路径
#日志名称
#logging.file=my.log

你可能感兴趣的:(Spring学习之路)