美文网首页
详解SpringBoot配置文件(十三)WEB属性

详解SpringBoot配置文件(十三)WEB属性

作者: 风的低语 | 来源:发表于2018-07-04 14:29 被阅读14次
    # 文件上传属性
    # 启用对文件上传的支持。
    multipart.enabled= true
    # 将文件写入磁盘后的阈值。 值可以使用后缀“MB”或“KB”表示兆字节或千字节大小。
    multipart.file-size-threshold= 0
    # 上传文件的位置。
    multipart.location= 
    # 最大文件大小。 值可以使用后缀“MB”或“KB”表示兆字节或千字节大小。
    multipart.max-file-size= 1Mb
    # 最大请求大小。 值可以使用后缀“MB”或“KB”表示兆字节或千字节大小。
    multipart.max-request-size= 10Mb
    
    # 嵌入式服务器配置(服务器属性)
    # 服务器应绑定到的网络地址。
    server.address= 
    # 如果启用响应压缩。
    server.compression.enabled= false
    # 从压缩中排除的用户代理列表。
    server.compression.excluded-user-agents= 
    # 应该压缩的MIME类型的逗号分隔列表。 例如`text / html,text / css,application / json`
    server.compression.mime-types= 
    # 执行压缩所需的最小响应大小。 例如2048
    server.compression.min-response-size= 
    # Servlet上下文初始化参数。 例如`server.context-parameters.a =  alpha`
    server.context-parameters.*= 
    # 应用程序的上下文路径。
    server.context-path= 
    # 显示应用程序的名称。
    server.display-name= application
    # 何时包含“stacktrace”属性。
    server.error.include-stacktrace= never
    # 错误控制器的路径。
    server.error.path= /error
    # 启动浏览器中出现服务器错误时显示的默认错误页面。
    server.error.whitelabel.enabled= true
    # JSP servlet的类名。
    server.jsp-servlet.class-name= org.apache.jasper.servlet.JspServlet
    # Init参数用于配置JSP servlet
    server.jsp-servlet.init-parameters.*= 
    # JSP servlet是否被注册
    server.jsp-servlet.registered= true
    # 服务器HTTP端口。
    server.port= 8080
    # 主调度程序servlet的路径。
    server.servlet-path= /
    # 会话cookie的注释。
    server.session.cookie.comment= 
    # 会话cookie的域。
    server.session.cookie.domain= 
    # “HttpOnly”标志为会话cookie。
    server.session.cookie.http-only= 
    # 会话cookie的最大时长(以秒为单位)。
    server.session.cookie.max-age= 
    # 会话cookie名称。
    server.session.cookie.name= 
    # 会话cookie的路径。
    server.session.cookie.path= 
    # 会话cookie的“安全”标志。
    server.session.cookie.secure= 
    # 重启之间持续会话数据。
    server.session.persistent= false
    # 用于存储会话数据的目录。
    server.session.store-dir= 
    # 会话超时(秒)。
    server.session.timeout= 
    # 会话跟踪模式(以下一个或多个:“cookie”,“url”,“ssl”)。
    server.session.tracking-modes= 
    # 支持SSL密码。
    server.ssl.ciphers= 
    # 客户端认证是否需要(“want”)或需要(“need”)。 需要信任存储。
    server.ssl.client-auth= 
    # ssl配置
    server.ssl.enabled= 
    server.ssl.key-alias= 
    server.ssl.key-password= 
    server.ssl.key-store= 
    server.ssl.key-store-password= 
    server.ssl.key-store-provider= 
    server.ssl.key-store-type= 
    server.ssl.protocol= 
    server.ssl.trust-store= 
    server.ssl.trust-store-password= 
    server.ssl.trust-store-provider= 
    server.ssl.trust-store-type= 
    # 创建日志文件的目录。 可以相对于tomcat base dir或absolute。
    server.tomcat.accesslog.directory= 
    # 启用访问日志。
    server.tomcat.accesslog.enabled= false
    # 访问日志的格式化模式。
    server.tomcat.accesslog.pattern= common
    # 日志文件名前缀。
    server.tomcat.accesslog.prefix= access_log
    # 日志文件名后缀。
    server.tomcat.accesslog.suffix= .log
    # 在调用backgroundProcess方法之间延迟秒。
    server.tomcat.background-processor-delay= 30
    # Tomcat基本目录。 如果未指定,将使用临时目录。
    server.tomcat.basedir= 
    # 正则表达式匹配可信IP地址。
    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}
    # HTTP消息头的最大大小(以字节为单位)。
    server.tomcat.max-http-header-size= 0
    # 最大工作线程数。
    server.tomcat.max-threads= 0
    # 用于覆盖原始端口值的HTTP头的名称。
    server.tomcat.port-header= X-Forwarded-Port
    # 头文件,保存传入协议,通常命名为“X-Forwarded-Proto”。
    server.tomcat.protocol-header= 
    # 表示传入请求使用SSL的协议头的值。
    server.tomcat.protocol-header-https-value= https
    # 提取远程ip的HTTP头的名称。 例如`X-FORWARDED-FOR`
    server.tomcat.remote-ip-header= 
    # 用于解码URI的字符编码。
    server.tomcat.uri-encoding= UTF-8
    # 访问日志目录。
    server.undertow.accesslog.dir= 
    # 启用访问日志。
    server.undertow.accesslog.enabled= false
    # 访问日志的格式化模式。
    server.undertow.accesslog.pattern= common
    # 每个缓冲区的大小字节数。
    server.undertow.buffer-size= 
    # 每个区域的缓冲区数。
    server.undertow.buffers-per-region= 
    # 在Java堆之外分配缓冲区。
    server.undertow.direct-buffers= 
    # 为工作者创建的I / O线程数。
    server.undertow.io-threads= 
    # 工作线程数。
    server.undertow.worker-threads= 
    # 如果X-Forwarded- *头应该应用于HttpRequest。
    server.use-forward-headers= 
    
    # 自由标记(自由标记自动配置)
    # 设置是否允许HttpServletRequest属性重写(隐藏)控制器生成的同名模型属性。
    spring.freemarker.allow-request-override= false
    # 设置是否允许HttpSession属性重写(隐藏)控制器生成的相同名称的模型属性。
    spring.freemarker.allow-session-override= false
    # 启用模板缓存。
    spring.freemarker.cache= false
    # 模板编码。
    spring.freemarker.charset= UTF-8
    # 检查模板位置是否存在。
    spring.freemarker.check-template-location= true
    # Content-Type值。
    spring.freemarker.content-type= text/html
    # 启用此技术的MVC视图分辨率。
    spring.freemarker.enabled= true
    # 设置在与模板合并之前是否应将所有请求属性添加到模型中。
    spring.freemarker.expose-request-attributes= false
    # 设置在与模板合并之前是否应将所有HttpSession属性添加到模型中。
    spring.freemarker.expose-session-attributes= false
    # 设置是否公开一个RequestContext供Spring 的宏库使用,名称为“springMacroRequestContext”。
    spring.freemarker.expose-spring-macro-helpers= true
    # 首选文件系统访问模板加载。 文件系统访问可以对模板更改进行热检测。
    spring.freemarker.prefer-file-system-access= true
    # 前缀,在构建URL时先查看名称。
    spring.freemarker.prefix= 
    # 所有视图的RequestContext属性的名称。
    spring.freemarker.request-context-attribute= 
    # 公开的FreeMarker密钥将被传递给FreeMarker的配置。
    spring.freemarker.settings.*= 
    # 后缀,在构建URL时附加到查看名称。
    spring.freemarker.suffix= 
    # 逗号分隔的模板路径列表。
    spring.freemarker.template-loader-path= classpath:/templates/
    # 可以解决的视图名称的白名单。
    spring.freemarker.view-names= 
    
    
    # groovr模板(Groovy模板自动配置)
    # 设置是否允许HttpServletRequest属性重写(隐藏)控制器生成的同名模型属性。
    spring.groovy.template.allow-request-override= false
    # 设置是否允许HttpSession属性重写(隐藏)控制器生成的相同名称的模型属性。
    spring.groovy.template.allow-session-override= false
    # 启用模板缓存。
    spring.groovy.template.cache= 
    # 模板编码。
    spring.groovy.template.charset= UTF-8
    # 检查模板位置是否存在。
    spring.groovy.template.check-template-location= true
    # 请参阅GroovyMarkupConfigurer
    spring.groovy.template.configuration.*= 
    # Content-Type值。
    spring.groovy.template.content-type= test/html
    # 启用此技术的MVC视图分辨率。
    spring.groovy.template.enabled= true
    # 设置在与模板合并之前是否应将所有请求属性添加到模型中。
    spring.groovy.template.expose-request-attributes= false
    # 设置在与模板合并之前是否应将所有HttpSession属性添加到模型中。
    spring.groovy.template.expose-session-attributes= false
    # 设置是否公开一个RequestContext供Spring Spring的宏库使用,名称为“springMacroRequestContext”。
    spring.groovy.template.expose-spring-macro-helpers= true
    # 前缀,在构建URL时先查看名称。
    spring.groovy.template.prefix= 
    # 所有视图的RequestContext属性的名称。
    spring.groovy.template.request-context-attribute= 
    # 模板路径。
    spring.groovy.template.resource-loader-path= classpath:/templates/
    # 后缀,在构建URL时附加到查看名称。
    spring.groovy.template.suffix= .tpl
    # 可以解决的视图名称的白名单。
    spring.groovy.template.view-names= 
    
    
    # spring Hateoas 配置
    # 指定应用程序/ hal + json响应是否应发送到接受application / json的请求。
    spring.hateoas.use-hal-as-default-json-media-type= true
    
    
    # HTTP 消息转换
    # 首选JSON映射程序用于HTTP消息转换。 设置为“gson”强制使用Gson,当它和Jackson都在类路径上时。
    spring.http.converters.preferred-json-mapper= jackson
    
    
    # HTTP 编码(Http编码属性)
    # HTTP请求和响应的字符集。 如果未明确设置,则添加到“Content-Type”头。
    spring.http.encoding.charset= UTF-8
    # 启用http编码支持。
    spring.http.encoding.enabled= true
    # 将编码强制到HTTP请求和响应上配置的字符集。
    spring.http.encoding.force= true
    
    
    # Jackson(解析json和序列化json) 配置
    # 日期格式字符串或全限定日期格式类名。 例如`yyyy-MM-dd HH:mm:ss`。
    spring.jackson.date-format= 
    # Jones开/关功能,影响Java对象反序列化的方式。
    spring.jackson.deserialization.*= 
    # 关闭或者打开Jackson 功能
    spring.jackson.generator.*= 
    # Joda日期时间格式字符串。 如果未配置,如果配置了格式字符串,则“日期格式”将用作后备。
    spring.jackson.joda-date-time-format= 
    # 用于格式化的区域设置。
    spring.jackson.locale= 
    # jackson通用开/关功能。
    spring.jackson.mapper.*= 
    # Jackson 解析器的开/关功能。
    spring.jackson.parser.*= 
    # Jackson的PropertyNamingStrategy的一个常量。 也可以是PropertyNamingStrategy子类的完全限定类名。
    spring.jackson.property-naming-strategy= 
    # Jones开/关功能,影响Java对象序列化的方式。
    spring.jackson.serialization.*= 
    # 控制在序列化期间包含属性。 配置了Jackson的JsonInclude.Include枚举中的一个值。
    spring.jackson.serialization-inclusion= 
    # 格式化日期时使用的时区。 例如`America / Los_Angeles`
    spring.jackson.time-zone= 
    
    
    # Jersey 配置
    # 作为应用程序的基本URI的路径。 如果指定,则覆盖“@ApplicationPath”的值。
    spring.jersey.application-path= 
    # jersey过滤器链顺序。
    spring.jersey.filter.order= 0
    #  init参数传递到Jersey通过servlet或过滤器。
    spring.jersey.init.*= 
    # jersey整合型。可以是“servlet”也可以是“filter”。
    spring.jersey.type= servlet
    
    
    # spring 视图分解器 配置
    # 启用后退解析支持。
    spring.mobile.devicedelegatingviewresolver.enable-fallback= false
    # 启用设备视图解析器。
    spring.mobile.devicedelegatingviewresolver.enabled= false
    # 前缀,用于查看移动设备的名称。
    spring.mobile.devicedelegatingviewresolver.mobile-prefix= mobile/
    # 后缀,附加到查看移动设备的名称。
    spring.mobile.devicedelegatingviewresolver.mobile-suffix= 
    # 前缀,用于查看普通设备的名称。
    spring.mobile.devicedelegatingviewresolver.normal-prefix= 
    # 后缀,附加到查看普通设备的名称。
    spring.mobile.devicedelegatingviewresolver.normal-suffix= 
    # 前缀,用于查看平板设备的名称。
    spring.mobile.devicedelegatingviewresolver.tablet-prefix= tablet/
    # 后缀,附加到查看平板电脑设备的名称。
    spring.mobile.devicedelegatingviewresolver.tablet-suffix= 
    
    
    # 移动网站首选项 (站点首选项自动配置)
    # 启用SitePreferenceHandler。
    spring.mobile.sitepreference.enabled= true
    
    
    # MUSTACHE模板(Mustache AutoConfiguration)
    # 启用模板缓存。
    spring.mustache.cache= false
    # 模板编码。
    spring.mustache.charset= UTF-8
    # 检查模板位置是否存在。
    spring.mustache.check-template-location= true
    # Content-Type值
    spring.mustache.content-type= text/html
    # 启用此技术的MVC视图分辨率。
    spring.mustache.enabled= true
    # 前缀应用于模板名称。
    spring.mustache.prefix= classpath:/templates/
    # 后缀应用于模板名称。
    spring.mustache.suffix= .html
    # 可以解决的视图名称的白名单。
    spring.mustache.view-names= 
    
    
    # SPRING MVC (Web Mvc 配置)
    # 异步请求处理超时之前的时间量(以毫秒为单位)。
    spring.mvc.async.request-timeout= 
    # 要使用的日期格式。 例如`dd / MM / yyyy`。
    spring.mvc.date-format= 
    # 发送TRACE请求到FrameworkServlet doService方法。
    spring.mvc.dispatch-trace-request= false
    # 发送OPTIONS请求到FrameworkServlet doService方法。
    spring.mvc.dispatch-options-request= false
    # 启用favicon.ico的解析。
    spring.mvc.favicon.enabled= true
    # 如果在重定向方案期间应该忽略“默认”模型的内容。
    spring.mvc.ignore-default-model-on-redirect= true
    # 要使用的区域设置。
    spring.mvc.locale= 
    # 将文件扩展名映射到内容协商的媒体类型。
    spring.mvc.media-types.*= 
    # 消息代码格式策略。 例如`PREFIX_ERROR_CODE`。
    spring.mvc.message-codes-resolver-format= 
    # 用于静态资源的路径模式。
    spring.mvc.static-path-pattern= /**
    # 如果没有发现处理程序来处理请求,则应抛出“NoHandlerFoundException”。
    spring.mvc.throw-exception-if-no-handler-found= false
    # Spring MVC视图前缀。
    spring.mvc.view.prefix= 
    # Spring MVC视图后缀。
    spring.mvc.view.suffix= 
    
     #SPRING RESOURCES HANDLING(ResourceProperties)资源处理
    spring.resources.add-mappings = true #启用默认资源处理。
    spring.resources.cache-period = #由资源处理程序提供的资源的缓存期,以秒为单位。
    spring.resources.chain.cache = true #在资源链中启用缓存。
    spring.resources.chain.enabled = #启用Spring资源处理链。默认情况下禁用,除非启用了至少一个策略。
    spring.resources.chain.html-application-cache = false #启用HTML5应用程序缓存清单重写。
    spring.resources.chain.strategy.content.enabled = false #启用内容版本策略。
    spring.resources.chain.strategy.content.paths = / ** #应用于版本策略的模式的逗号分隔列表。
    spring.resources.chain.strategy.fixed.enabled = false #启用固定版本策略。
    spring.resources.chain.strategy.fixed.paths = #应用于版本策略的逗号分隔的模式列表。
    spring.resources.chain.strategy.fixed.version = #用于版本策略的版本字符串。
    spring.resources.static-locations = classpath:/ META-INF / resources /,classpath:/ resources /,classpath:/ static /,classpath:/ public / #静态资源的位置。
    
     #SPRING SOCIAL(SocialWebAutoConfiguration)集群
    spring.social.auto-connection-views = false #启用支持的提供程序的连接状态视图。
    
    
     #SPRING SOCIAL FACEBOOK(FacebookAutoConfiguration)
    spring.social.facebook.app-id = #您的应用程序的Facebook应用程序ID
    spring.social.facebook.app-secret = #你的应用程序的Facebook应用程序密码
    
    
     #SPRING SOCIAL LINKEDIN(LinkedInAutoConfiguration)
    spring.social.linkedin.app-id = #您的应用程序的LinkedIn应用程序ID
    spring.social.linkedin.app-secret = #您的应用程序的LinkedIn App Secret
    
    
     #SPRING SOCIAL TWITTER(TwitterAutoConfiguration)
    spring.social.twitter.app-id = #你的应用程序的Twitter应用程序ID
    spring.social.twitter.app-secret = #你的应用程序的Twitter App Secret
    
    
     #THYMELEAF Thymeleaf模板引擎配置
    spring.thymeleaf.cache = true #启用模板缓存。
    spring.thymeleaf.check-template-location = true #检查模板位置是否存在。
    spring.thymeleaf.content-type = text / html #Content-Type值。
    spring.thymeleaf.enabled = true #启用MVC Thymeleaf视图分辨率。
    spring.thymeleaf.encoding = UTF-8 #模板编码。
    spring.thymeleaf.excluded-view-names = #应该从解决方案中排除的视图名称的逗号分隔列表。
    spring.thymeleaf.mode = HTML5 #应用于模板的模板模式。另请参见StandardTemplateModeHandlers。
    spring.thymeleaf.prefix = classpath:/ templates / #在构建URL时预先查看名称的前缀。
    spring.thymeleaf.suffix = .html #构建URL时附加查看名称的后缀。
    spring.thymeleaf.template-resolver-order = #链中模板解析器的顺序。
    spring.thymeleaf.view-names = #可以解析的视图名称的逗号分隔列表。
    
     #VELOCITY TEMPLATES(VelocityAutoConfiguration)
    spring.velocity.allow-request-override = false #设置是否允许HttpServletRequest属性覆盖(隐藏)控制器生成的同名的模型属性。
    spring.velocity.allow-session-override = false #设置是否允许HttpSession属性重写(隐藏)控制器生成的同名的模型属性。
    spring.velocity.cache = #启用模板缓存。
    spring.velocity.charset = UTF-8 #模板编码。
    spring.velocity.check-template-location = true #检查模板位置是否存在。
    spring.velocity.content-type = text / html #Content-Type值。
    spring.velocity.date-tool-attribute = #在视图的Velocity上下文中公开的DateTool辅助对象的名称。
    spring.velocity.enabled = true #启用此技术的MVC视图分辨率。
    spring.velocity.expose-request-attributes = false #设置在与模板合并之前是否应将所有请求属性添加到模型中。
    spring.velocity.expose-session-attributes = false #设置在与模板合并之前是否应将所有HttpSession属性添加到模型中。
    spring.velocity.expose-spring-macro-helpers = true #设置是否公开一个RequestContext供Spring Spring的宏库使用,名称为“springMacroRequestContext”。
    spring.velocity.number-tool-attribute = #在视图的Velocity上下文中公开的NumberTool帮助对象的名称。
    spring.velocity.prefer-file-system-access = true #首选文件系统访问模板加载。文件系统访问可以对模板更改进行热检测。
    spring.velocity.prefix = #前缀,用于在构建URL时查看名称。
    spring.velocity.properties。* = #附加速度属性。
    spring.velocity.request-context-attribute = #所有视图的RequestContext属性的名称。
    spring.velocity.resource-loader-path = classpath:/ templates / #模板路径。
    spring.velocity.suffix = .vm #构建URL时附加到查看名称的后缀。
    spring.velocity.toolbox-config-location = #Velocity Toolbox配置位置。例如`/ WEB-INF / toolbox.xml'
    spring.velocity.view-names = #可以解决的视图名称的白名单。
    
    

    相关文章

      网友评论

          本文标题:详解SpringBoot配置文件(十三)WEB属性

          本文链接:https://www.haomeiwen.com/subject/uspeuftx.html