SpringBoot配置属性二
server配置
server.address
指定server绑定的地址server.compression.enabled
是否开启压缩,默认为false.server.compression.excluded-user-agents
指定不压缩的user-agent,多个以逗号分隔,默认值为:text/html,text/xml,text/plain,text/cssserver.compression.mime-types
指定要压缩的MIME type,多个以逗号分隔.server.compression.min-response-size
执行压缩的阈值,默认为2048server.context-parameters.[param name]
设置servlet context 参数server.context-path
设定应用的context-path.server.display-name
设定应用的展示名称,默认: applicationserver.jsp-servlet.class-name
设定编译JSP用的servlet,默认: org.apache.jasper
.servlet.JspServlet)
server.jsp-servlet.init-parameters.[param name]
设置JSP servlet 初始化参数.server.jsp-servlet.registered
设定JSP servlet是否注册到内嵌的servlet容器,默认trueserver.port
设定http监听端口server.servlet-path
设定dispatcher servlet的监听路径,默认为: /
cookie、session配置
server.session.cookie.comment
指定session cookie的commentserver.session.cookie.domain
指定session cookie的domainserver.session.cookie.http-only
是否开启HttpOnly.server.session.cookie.max-age
设定session cookie的最大age.server.session.cookie.name
设定Session cookie 的名称.server.session.cookie.path
设定session cookie的路径.server.session.cookie.secure
设定session cookie的“Secure” flag.server.session.persistent
重启时是否持久化session,默认falseserver.session.timeout
session的超时时间server.session.tracking-modes
设定Session的追踪模式(cookie, url, ssl).
ssl配置
server.ssl.ciphers
是否支持SSL ciphers.server.ssl.client-auth
设定client authentication是wanted 还是 needed.server.ssl.enabled
是否开启ssl,默认: trueserver.ssl.key-alias
设定key store中key的别名.server.ssl.key-password
访问key store中key的密码.server.ssl.key-store
设定持有SSL certificate的key store的路径,通常是一个.jks文件.server.ssl.key-store-password
设定访问key store的密码.server.ssl.key-store-provider
设定key store的提供者.server.ssl.key-store-type
设定key store的类型.server.ssl.protocol
使用的SSL协议,默认: TLSserver.ssl.trust-store
持有SSL certificates的Trust store.server.ssl.trust-store-password
访问trust store的密码.server.ssl.trust-store-provider
设定trust store的提供者.server.ssl.trust-store-type
指定trust store的类型.
tomcat
server.tomcat.access-log-enabled
是否开启access log ,默认: false)server.tomcat.access-log-pattern
设定access logs的格式,默认: commonserver.tomcat.accesslog.directory
设定log的目录,默认: logsserver.tomcat.accesslog.enabled
是否开启access log,默认: falseserver.tomcat.accesslog.pattern
设定access logs的格式,默认: commonserver.tomcat.accesslog.prefix
设定Log 文件的前缀,默认: access_logserver.tomcat.accesslog.suffix
设定Log 文件的后缀,默认: .logserver.tomcat.background-processor-delay
后台线程方法的Delay大小: 30server.tomcat.basedir
设定Tomcat的base 目录,如果没有指定则使用临时目录.server.tomcat.internal-proxies
设定信任的正则表达式,默认:“10\.\d{1,3}\.\d{1,3}\.\d{1,3}| 192\.168\.\d{1,3}\.\d{1,3}| 169\.254\.\d{1,3}\.\d{1,3}| 127\.\d{1,3}\.\d{1,3}\.\d{1,3}| 172\.1[6-9]{1}\.\d{1,3}\.\d{1,3}| 172\.2[0-9]{1}\.\d{1,3}\.\d{1,3}|172\.3[0-1]{1}\.\d{1,3}\.\d{1,3}”server.tomcat.max-http-header-size
设定http header的最小值,默认: 0server.tomcat.max-threads
设定tomcat的最大工作线程数,默认为: 0server.tomcat.port-header
设定http header使用的,用来覆盖原来port的value.server.tomcat.protocol-header
设定Header包含的协议,通常是 X-Forwarded-Proto,如果remoteIpHeader有值,则将设置为RemoteIpValve.server.tomcat.protocol-header-https-value
设定使用SSL的header的值,默认https.server.tomcat.remote-ip-header
设定remote IP的header,如果remoteIpHeader有值,则设置为RemoteIpValveserver.tomcat.uri-encoding
设定URI的解码字符集.
undertow
- 设定Undertow access log 的目录,默认: logs
- server.undertow.access-log-dir
- 设定Undertow access log 的目录,默认: logs
- server.undertow.access-log-enabled
- 是否开启access log,默认: false
- server.undertow.access-log-pattern
- 设定access logs的格式,默认: common
- server.undertow.accesslog.dir
- 设定access log 的目录.
- server.undertow.buffer-size
- 设定buffer的大小.
- server.undertow.buffers-per-region
- 设定每个region的buffer数
- server.undertow.direct-buffers
- 设定堆外内存
- server.undertow.io-threads
- 设定I/O线程数.
- server.undertow.worker-threads
- 设定工作线程数
SpringBoot配置属性二的更多相关文章
- SpringBoot配置属性之Server
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性转载地址
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之其他
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之Migration
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之Security
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之MQ
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之NOSQL
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之MVC
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...
- SpringBoot配置属性之Server参数
server配置server.address指定server绑定的地址 server.compression.enabled是否开启压缩,默认为false. server.compression.ex ...
随机推荐
- Android Weekly Notes Issue #310 (Google IO特别篇)
Android Weekly Issue #310 May 20th, 2018 Android Weekly Issue #290 本期既有本次Google IO对于Play Console的更新简 ...
- hadoop —— MapReduce例子 (数据排序)
参考:http://eric-gcm.iteye.com/blog/1807468 file1.txt: 2 32 654 32 15 756 65223 file2.txt: 5956 22 650 ...
- JS判断数字、中文、小数位数
1.JS判断数字 ①var value=$("#test").val(); if(!isNaN(value)){ alert("是数字"); }else{ al ...
- 引用 qsort与sort的比较
引用 linpder 的 qsort与sort的比较 在C/C++标准库中提供了快速排序的函数qsort():在STL中也提供了sort()排序函数,那么这两个函数哪个快呢?之前与代码-> ...
- 前端多媒体(4)—— video标签全面分析
测试地址:https://young-cowboy.github.io/gallery/html5_video/index.html 属性 一些属性是只读的,一些属性是可以修改从而影响视频播放的. a ...
- BZOJ-4003:城池攻占(可并堆+lazy标记)
小铭铭最近获得了一副新的桌游,游戏中需要用 m 个骑士攻占 n 个城池. 这 n 个城池用 到 n 的整数表示.除 号城池外,城池 i 会受到另一座城池 fi 的管辖, 其中 fi <i.也就是 ...
- BZOJ4088: [Sdoi2015]立体图
高一联赛之后不久写的.当时看到这题就感觉特别优美.那个时候啥都不会,就只会这种模拟题,还只会最暴力的方法.对于每个方向的灯,枚举每个位置,手动枚举所有遮挡效果,并在枚举位置过程中传递遮挡效果. con ...
- CF 949D Curfew——贪心(思路!!!)
题目:http://codeforces.com/contest/949/problem/D 有二分答案的思路. 如果二分了一个答案,首先可知越靠中间的应该大约越容易满足,因为方便把别的房间的人聚集过 ...
- 开源.Net项目合集
http://www.cnblogs.com/StrangeCity/p/OpenSourceProject.html
- <正则吃饺子> :关于oracle 中 with的简单使用
oracle中 with的简单使用介绍,具体可以参见其他的博文介绍,在这里只是简单的介绍: with 构建了一个临时表,类似于存储过程中的游标,我是这么理解的. 一.数据准备: select * fr ...