微服务 SpringBoot 2.0(六):常用配置(properties、yml)

约定优于配置,但配置不能为0 —— 知码学院

引言

在前面的章节中,我们已经知道,SpringBoot的配置文件分为properties和yml,而我个人更青睐yml,其书写格式让人觉得很舒服,那这篇文章了就将配置文件中的各个属性列出来供大家参考,在IDE工具中也会有相应的提示,若出现红色,说明该属性已经在2.0中变更,请查看变更后的书写格式。

SPRING CONFIG

spring.config.name
配置文件名称,默认为application
spring.config.location
配置文件存放位置,默认为classpath目录下

列出的类型如下:mvc、messages、mobile、view、resource、multipart、freemarker、thymeleaf、mustcache、groovy模板、http、json、jersey

mvc


spring.mvc.date-format: yyyy-MM-dd
#设定日期的格式,比如dd/MM/yyyy.

spring.mvc.favicon.enabled: true
#是否支持favicon.ico,默认为: true

spring.mvc.ignore-default-model-on-redirect: true
#在重定向时是否忽略默认model的内容,默认为true

spring.mvc.locale: abc
#指定使用的Locale.

spring.mvc.message-codes-resolver-format: PREFIX_ERROR_CODE
#指定message codes的格式化策略(PREFIX_ERROR_CODE,POSTFIX_ERROR_CODE).

spring.mvc.view.prefix: static
#指定mvc视图的前缀.

spring.mvc.view.suffix: .html
#指定mvc视图的后缀.

messages

spring.messages.basename
#指定message的basename,多个以逗号分隔,如果不加包名的话,默认从classpath路径开始,默认: messages

spring.messages.cache-seconds
#设定加载的资源文件缓存失效时间,-1的话为永不过期,默认为-1

spring.messages.encoding
#设定Message bundles的编码,默认: UTF-8

mobile

spring.mobile.devicedelegatingviewresolver.enable-fallback
#是否支持fallback的解决方案,默认false

spring.mobile.devicedelegatingviewresolver.enabled
#是否开始device view resolver,默认为: false

spring.mobile.devicedelegatingviewresolver.mobile-prefix
#设定mobile端视图的前缀,默认为:mobile/

spring.mobile.devicedelegatingviewresolver.mobile-suffix
#设定mobile视图的后缀

spring.mobile.devicedelegatingviewresolver.normal-prefix
#设定普通设备的视图前缀

spring.mobile.devicedelegatingviewresolver.normal-suffix
#设定普通设备视图的后缀

spring.mobile.devicedelegatingviewresolver.tablet-prefix
#设定平板设备视图前缀,默认:tablet/

spring.mobile.devicedelegatingviewresolver.tablet-suffix
#设定平板设备视图后缀.

spring.mobile.sitepreference.enabled
#是否启用SitePreferenceHandler,默认为: true

view

spring.view.prefix
#设定mvc视图的前缀.

spring.view.suffix
#设定mvc视图的后缀.

resource

spring.resources.add-mappings
#是否开启默认的资源处理,默认为true

spring.resources.cache-period
#设定资源的缓存时效,以秒为单位.

spring.resources.chain.cache
#是否开启缓存,默认为: true

spring.resources.chain.enabled
#是否开启资源 handling chain,默认为false

spring.resources.chain.html-application-cache
#是否开启h5应用的cache manifest重写,默认为: false

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/,/resources/, /static/, /public/]以及context:/

multipart

multipart.enabled
#是否开启文件上传支持,默认为true

multipart.file-size-threshold
#设定文件写入磁盘的阈值,单位为MB或KB,默认为0

multipart.location
#指定文件上传路径.

multipart.max-file-size
#指定文件大小最大值,默认1MB

multipart.max-request-size
#指定每次请求的最大值,默认为10MB

freemarker

spring.freemarker.allow-request-override
#指定HttpServletRequest的属性是否可以覆盖controller的model的同名项

spring.freemarker.allow-session-override
#指定HttpSession的属性是否可以覆盖controller的model的同名项

spring.freemarker.cache
#是否开启template caching.

spring.freemarker.charset
#设定Template的编码.

spring.freemarker.check-template-location
#是否检查templates路径是否存在.

spring.freemarker.content-type
#设定Content-Type.

spring.freemarker.enabled
#是否允许mvc使用freemarker.

spring.freemarker.expose-request-attributes
#设定所有request的属性在merge到模板的时候,是否要都添加到model中.

spring.freemarker.expose-session-attributes
#设定所有HttpSession的属性在merge到模板的时候,是否要都添加到model中.

spring.freemarker.expose-spring-macro-helpers
#设定是否以springMacroRequestContext的形式暴露RequestContext给Spring’s macro library使用

spring.freemarker.prefer-file-system-access
#是否优先从文件系统加载template,以支持热加载,默认为true

spring.freemarker.prefix
#设定freemarker模板的前缀.

spring.freemarker.request-context-attribute
#指定RequestContext属性的名.

spring.freemarker.settings
#设定FreeMarker keys.

spring.freemarker.suffix
#设定模板的后缀.

spring.freemarker.template-loader-path
#设定模板的加载路径,多个以逗号分隔,默认: ["classpath:/templates/"]

spring.freemarker.view-names
#指定使用模板的视图列表.

thymeleaf

spring.thymeleaf.cache
#是否开启模板缓存,默认true

spring.thymeleaf.check-template-location
#是否检查模板路径是否存在,默认true

spring.thymeleaf.enabled
#是否允许MVC使用Thymeleaf,默认为: true

spring.thymeleaf.encoding
#指定模板的编码,默认为: UTF-8

spring.thymeleaf.excluded-view-names
#指定不使用模板的视图名称,多个以逗号分隔.

spring.thymeleaf.mode
#指定模板的模式,具体查看StandardTemplateModeHandlers,默认为: HTML5

spring.thymeleaf.prefix
#指定模板的前缀,默认为:classpath:/templates/

spring.thymeleaf.suffix
#指定模板的后缀,默认为:.html

spring.thymeleaf.template-resolver-order
#指定模板的解析顺序,默认为第一个.

spring.thymeleaf.view-names
#指定使用模板的视图名,多个以逗号分隔.

mustcache

spring.mustache.cache
#是否Enable template caching.

spring.mustache.charset
#指定Template的编码.

spring.mustache.check-template-location
#是否检查默认的路径是否存在.

spring.mustache.enabled
#是否开启mustcache的模板支持.

spring.mustache.prefix
#指定模板的前缀,默认: classpath:/templates/

spring.mustache.suffix
#指定模板的后缀,默认: .html

spring.mustache.view-names
#指定要使用模板的视图名.

groovy模板

spring.groovy.template.allow-request-override
#指定HttpServletRequest的属性是否可以覆盖controller的model的同名项

spring.groovy.template.allow-session-override
#指定HttpSession的属性是否可以覆盖controller的model的同名项

spring.groovy.template.cache
#是否开启模板缓存.

spring.groovy.template.charset
#指定Template编码.

spring.groovy.template.check-template-location
#是否检查模板的路径是否存在.

spring.groovy.template.configuration.auto-escape
#是否在渲染模板时自动排查model的变量,默认为: false

spring.groovy.template.configuration.auto-indent
#是否在渲染模板时自动缩进,默认为false

spring.groovy.template.configuration.auto-indent-string
#如果自动缩进启用的话,是使用SPACES还是TAB,默认为: SPACES

spring.groovy.template.configuration.auto-new-line
#渲染模板时是否要输出换行,默认为false

spring.groovy.template.configuration.base-template-class
#指定template base class.

spring.groovy.template.configuration.cache-templates
#是否要缓存模板,默认为true

spring.groovy.template.configuration.declaration-encoding
#在写入declaration header时使用的编码

spring.groovy.template.configuration.locale
#指定template locale.

spring.groovy.template.configuration.new-line-string
#当启用自动换行时,换行的输出,默认为系统的line.separator属性的值

spring.groovy.template.configuration.resource-loader-path
#指定groovy的模板路径,默认为classpath:/templates/

spring.groovy.template.configuration.use-double-quotes
#指定属性要使用双引号还是单引号,默认为false

spring.groovy.template.content-type
#指定Content-Type.

spring.groovy.template.enabled
#是否开启groovy模板的支持.

spring.groovy.template.expose-request-attributes
#设定所有request的属性在merge到模板的时候,是否要都添加到model中.

spring.groovy.template.expose-session-attributes
#设定所有session的属性在merge到模板的时候,是否要都添加到model中.

spring.groovy.template.expose-spring-macro-helpers
#设定是否以springMacroRequestContext的形式暴露RequestContext给Spring’s macro library使用

spring.groovy.template.prefix
#指定模板的前缀.

spring.groovy.template.request-context-attribute
#指定RequestContext属性的名.

spring.groovy.template.resource-loader-path
#指定模板的路径,默认为: classpath:/templates/

spring.groovy.template.suffix
#指定模板的后缀

spring.groovy.template.view-names
#指定要使用模板的视图名称.

http

spring.hateoas.apply-to-primary-object-mapper
#设定是否对object mapper也支持HATEOAS,默认为: true

spring.http.converters.preferred-json-mapper
#是否优先使用JSON mapper来转换.

spring.http.encoding.charset
#指定http请求和相应的Charset,默认: UTF-8

spring.http.encoding.enabled
#是否开启http的编码支持,默认为true

spring.http.encoding.force
#是否强制对http请求和响应进行编码,默认为true

json

spring.jackson.date-format
#指定日期格式,比如yyyy-MM-dd HH:mm:ss,或者具体的格式化类的全限定名

spring.jackson.deserialization
#是否开启Jackson的反序列化

spring.jackson.generator
#是否开启json的generators.

spring.jackson.joda-date-time-format
#指定Joda date/time的格式,比如yyyy-MM-dd HH:mm:ss). 如果没有配置的话,dateformat会作为backup

spring.jackson.locale
#指定json使用的Locale.

spring.jackson.mapper
#是否开启Jackson通用的特性.

spring.jackson.parser
#是否开启jackson的parser特性.

spring.jackson.property-naming-strategy
#指定PropertyNamingStrategy (CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES)或者指定PropertyNamingStrategy子类的全限定类名.

spring.jackson.serialization
#是否开启jackson的序列化.

spring.jackson.serialization-inclusion
#指定序列化时属性的inclusion方式,具体查看JsonInclude.Include枚举.

spring.jackson.time-zone
#指定日期格式化时区,比如America/Los_Angeles或者GMT+10.

jersey

spring.jersey.filter.order
#指定Jersey filter的order,默认为: 0

spring.jersey.init
#指定传递给Jersey的初始化参数.

spring.jersey.type
#指定Jersey的集成类型,可以是servlet或者filter.

作者有话说:喜欢的话就请移步知码学院,请自备水,更多干、干、干货等着你

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容