SpringBoot配置属性系列

  • SpringBoot配置属性之MVC

  • SpringBoot配置属性之Server

  • SpringBoot配置属性之DataSource

  • SpringBoot配置属性之NOSQL

  • SpringBoot配置属性之MQ

  • SpringBoot配置属性之Security

  • SpringBoot配置属性之Migration

  • SpringBoot配置属性之其他

另外附上个人关于springboot的一些文章

  • SpringBoot前世今生

  • SpringBoot集成mybatis

  • SpringBoot四大神器之Actuator

  • SpringBoot四大神器之Starter

server配置

  • server.address指定server绑定的地址

  • server.compression.enabled是否开启压缩,默认为false.

  • server.compression.excluded-user-agents指定不压缩的user-agent,多个以逗号分隔,默认值为:text/html,text/xml,text/plain,text/css

  • server.compression.mime-types指定要压缩的MIME type,多个以逗号分隔.

  • server.compression.min-response-size执行压缩的阈值,默认为2048

  • server.context-parameters.[param name]设置servlet context 参数

  • server.context-path设定应用的context-path.

  • server.display-name设定应用的展示名称,默认: application

  • server.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容器,默认true

  • server.port设定http监听端口

  • server.servlet-path设定dispatcher servlet的监听路径,默认为: /

cookie、session配置

  • server.session.cookie.comment指定session cookie的comment

  • server.session.cookie.domain指定session cookie的domain

  • server.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,默认false

  • server.session.timeoutsession的超时时间

  • 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,默认: true

  • server.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协议,默认: TLS

  • server.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的格式,默认: common

  • server.tomcat.accesslog.directory设定log的目录,默认: logs

  • server.tomcat.accesslog.enabled是否开启access log,默认: false

  • server.tomcat.accesslog.pattern设定access logs的格式,默认: common

  • server.tomcat.accesslog.prefix设定Log 文件的前缀,默认: access_log

  • server.tomcat.accesslog.suffix设定Log 文件的后缀,默认: .log

  • server.tomcat.background-processor-delay后台线程方法的Delay大小: 30

  • server.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的最小值,默认: 0

  • server.tomcat.max-threads设定tomcat的最大工作线程数,默认为: 0

  • server.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有值,则设置为RemoteIpValve

  • server.tomcat.uri-encoding设定URI的解码字符集.

undertow

  • 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设定工作线程数

https://segmentfault.com/a/1190000004309751

SpringBoot配置属性之Server相关推荐

  1. SpringBoot配置属性之NOSQL

    SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...

  2. SpringBoot配置属性之MQ

    SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...

  3. SpringBoot配置属性之DataSource

    SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之N ...

  4. SpringBoot配置属性之Security

    序 spring security是springboot支持的权限控制系统. security.basic.authorize-mode 要使用权限控制模式. security.basic.enabl ...

  5. SpringBoot配置Https请求运行tomcat启动失败,ssl keystore password was incorrect

    直接看后面,密码有俩个,可能你用了不对的那个 [SSL]如何使用SpringBoot内置的tomcat配置SSL,从而实现HTTPS访问(基于阿里云云服务器) 下载完成需要配置之后,一样的yml格式报 ...

  6. 使用SpringBoot配置了 server.servlet.path后无效的解决方案

    使用SpringBoot配置了 server.servlet.path后无效的解决方案 参考文章: (1)使用SpringBoot配置了 server.servlet.path后无效的解决方案 (2) ...

  7. springboot配置

    springboot采纳了建立生产就绪spring应用程序的观点. Spring Boot优先于配置的惯例,旨在让您尽快启动和运行.在一般情况下,我们不需要做太多的配置就能够让spring boot正 ...

  8. SpringBoot 配置多数据源

    项目Git地址:SpringBoot 配置多数据源:Jacob-multi-data-source 准备工作 准备两个数据库(此模块中两个数据库一个为本地 一个为远程,本地为主,远程为从).然后建表. ...

  9. SpringBoot配置详解

    SpringBoot配置详解 本文链接:http://blog.battcn.com/2018/04/22/springboot/v2-config-properties/ 上一篇介绍了SpringB ...

最新文章

  1. C#变量命名的几种方式—C#基础回顾
  2. 优雅地关闭资源,try-with-resource语法和lombok@Cleanup
  3. 一篇文章解释struts常用功能
  4. 利用 PIL模块实现生成动态验证码
  5. android软件欢迎界面,Android应用中实现一个软件启动的欢迎界面
  6. 搭建Nginx+PHP环境
  7. 猿创征文|【FreeSwitch开发实践】使用sipp对FreeSwitch进行压力测试
  8. 【转载】批量维护(创建/修改)客户主数据函数 SD_CUSTOMER_MAINTAIN_ALL BP自定义屏幕 数据维护
  9. QCC514x-QCC304x(headset)系列(实战篇)之5.1 tone详解
  10. 泛微oa流程表单之HTML表单字段必填验证的添加与移除
  11. Elasticsearch:如何在 Elastic Agents 中配置 Beats 来采集定制日志
  12. PCB设计中如何区分 滤波电容、去耦电容、旁路电容
  13. 小学四年级计算机上册考试试题,小学四年级数学上册复习试题
  14. 安卓恢复大师怎样恢复手机删除的照片
  15. Asis2016 books null off by one
  16. ASEMI整流桥ABS10、ABS210、DB107S详细参数对比
  17. python二进制转八进制代码_如何在python中输入二进制、八进制、十进制、十六进制数据并转换...
  18. 少说话多写代码之Python学习010——字典的简单使用
  19. 如何让机子即可上外网又可上内网
  20. 论文笔记Self-Attentive Sequential Recommendation

热门文章

  1. 基因名2-MAR等错误名字产生原因
  2. Intellij IDEA中使用Protobuf的正确姿势
  3. 怎么把本地项目和远程git仓库相连通
  4. RK3288 手动设置电池电量
  5. 3. 软件测试的类型
  6. ASP.NET MVC Display Mode 移动端视图 配置对微信内置浏览器的识别
  7. oracle中表空间的相关操作
  8. Python:变量与字符串
  9. 用SAXBuilder、Document、Element操作xml
  10. pku 3087 Shuffle'm Up 说的是bfs,其实就是个模拟