Spring boot 配置

轉(zhuǎn)載自:https://blog.csdn.net/lpfsuperman/article/details/78287265

要加“m”說(shuō)明是MB法精,否則就是KB了.

-Xms:初始值

-Xmx:最大值

-Xmn:最小值

java -Xms80m -Xmx80m -jar mod.jar

時(shí)區(qū)設(shè)置

java -jar -Duser.timezone=GMT+08 mod.jar

#----------------------------------------

#核心屬性

#----------------------------------------

#BANNER

banner.charset = UTF -8#橫幅文件編碼冰寻。

banner.location = classpath :banner.txt#橫幅文件位置计贰。

#LOGGING

logging.config =#日志記錄配置文件的位置孔厉。例如對(duì)于Logback的“classpath:logback.xml”

logging.exception-conversion-word =%wEx#記錄異常時(shí)使用的轉(zhuǎn)換字书幕。

logging.file =#日志文件名按咒。例如myapp.log

logging.level。* =#日志級(jí)別嚴(yán)重性映射但骨。例如logging.level.org.springframework = DEBUG

logging.path =#日志文件的位置励七。例如/ var / log

logging.pattern.console =#輸出到控制臺(tái)的Appender模式。僅支持默認(rèn)logback設(shè)置奔缠。

logging.pattern.file =#輸出到文件的Appender模式掠抬。僅支持默認(rèn)logback設(shè)置。

logging.pattern.level =#日志級(jí)別的Appender模式(默認(rèn)為%5p)校哎。僅支持默認(rèn)logback設(shè)置两波。

logging.register-shutdown-hook = false #在初始化時(shí)為日志系統(tǒng)注冊(cè)一個(gè)關(guān)閉掛接。

#AOP

spring.aop.auto = true #添加@EnableAspectJAutoProxy闷哆。

spring.aop.proxy-target-class = false #是否要?jiǎng)?chuàng)建基于子類(CGLIB)的代理(true)腰奋,而不是基于標(biāo)準(zhǔn)Java接口的代理(false)。

#IDENTITY(ContextIdApplicationContextInitializer)

spring.application.index =#應(yīng)用程序索引。

spring.application.name =#應(yīng)用程序名稱够吩。

#ADMIN(SpringApplicationAdminJmxAutoConfiguration)

spring.application.admin.enabled = false #為應(yīng)用程序啟用管理功能政勃。

spring.application.admin.jmx-name = org .springframework.boot:type = Admin ,name = SpringApplication #應(yīng)用程序管理MBean的JMX名稱局冰。

#AUTO-CONFIGURATION

spring.autoconfigure.exclude =#要自動(dòng)配置要排除的類。

#SPRING CORE

spring.beaninfo.ignore = true #跳過(guò)搜索BeanInfo類灌危。

#SPRING CACHE(CacheProperties)

spring.cache.cache-names =#如果底層緩存管理器支持康二,則創(chuàng)建緩沖區(qū)名稱的逗號(hào)分隔列表。

spring.cache.ehcache.config =#用于初始化EhCache的配置文件的位置勇蝙。

spring.cache.guava.spec =#用于創(chuàng)建緩存的規(guī)范沫勿。檢查CacheBuilderSpec有關(guān)規(guī)格格式的更多詳細(xì)信息。

spring.cache.hazelcast.config =#用于初始化Hazelcast的配置文件的位置。

spring.cache.infinispan.config =#用于初始化Infinispan的配置文件的位置产雹。

spring.cache.jcache.config =#用于初始化緩存管理器的配置文件的位置烫罩。

spring.cache.jcache.provider =#用于檢索符合JSR-107規(guī)范的緩存管理器的CachingProvider實(shí)現(xiàn)的完全限定名。只有在類路徑上有多個(gè)JSR-107實(shí)現(xiàn)可用時(shí)才需要洽故。

spring.cache.type =#緩存類型贝攒,默認(rèn)情況下根據(jù)環(huán)境自動(dòng)檢測(cè)。

#SPRING CONFIG - 僅使用環(huán)境屬性(ConfigFileApplicationListener)

spring.config.location =#配置文件位置时甚。

spring.config.name = application #配置文件名隘弊。

#HAZELCAST(HazelcastProperties)

spring.hazelcast.config =#用于初始化Hazelcast的配置文件的位置。

#JMX

spring.jmx.default-domain =#JMX域名荒适。

spring.jmx.enabled = true #將管理bean暴露給JMX域梨熙。

spring.jmx.server = mbeanServer #MBeanServer bean名稱。

#Email(MailProperties)

spring.mail.default-encoding = UTF -8#默認(rèn)MimeMessage編碼刀诬。

spring.mail.host =#SMTP服務(wù)器主機(jī)咽扇。例如smtp.example.com

spring.mail.jndi-name =#Session JNDI名稱。設(shè)置時(shí)陕壹,優(yōu)先于其他郵件設(shè)置质欲。

spring.mail.password =#SMTP服務(wù)器的登錄密碼。

spring.mail.port =#SMTP服務(wù)器端口糠馆。

spring.mail.properties嘶伟。* =#其他JavaMail會(huì)話屬性。

spring.mail.protocol = smtp #SMTP服務(wù)器使用的協(xié)議又碌。

spring.mail.test-connection = false #測(cè)試郵件服務(wù)器在啟動(dòng)時(shí)是否可用九昧。

spring.mail.username =#SMTP服務(wù)器的登錄用戶。

#APPLICATION SETTINGS(SpringApplication)

spring.main.banner-mode = console #用于在應(yīng)用程序運(yùn)行時(shí)顯示橫幅的模式毕匀。

spring.main.sources =#要包括在ApplicationContext中的Sources(類名铸鹰,包名或XML資源位置)。

spring.main.web-environment =#在Web環(huán)境中運(yùn)行應(yīng)用程序(默認(rèn)情況下自動(dòng)檢測(cè))皂岔。

#FILE ENCODING(FileEncodingApplicationListener)

spring.mandatory-file-encoding =#應(yīng)用程序必須使用的預(yù)期字符編碼蹋笼。

#INTERNATIONALIZATION(MessageSourceAutoConfiguration)

spring.messages.basename = messages #以逗號(hào)分隔的基本名稱列表,每個(gè)名稱遵循ResourceBundle約定凤薛。

spring.messages.cache-seconds = -1#加載的資源束文件緩存到期時(shí)間(以秒為單位)姓建。設(shè)置為-1時(shí)诞仓,捆綁包將被永久緩存缤苫。

spring.messages.encoding = UTF -8#消息包編碼。

spring.messages.fallback-to-system-locale = true #設(shè)置是否找不到特定區(qū)域設(shè)置的文件墅拭,返回到系統(tǒng)區(qū)域設(shè)置活玲。

#OUTPUT

spring.output.ansi.enabled = detect #配置ANSI輸出(可以是“detect”,“always”,“never”)舒憾。

#PID FILE(ApplicationPidFileWriter)

spring.pid.fail-on-write-error =#如果使用ApplicationPidFileWriter但不能寫入PID文件镀钓,則失敗。

spring.pid.file =#要寫入的PID文件的位置(如果使用ApplicationPidFileWriter)镀迂。

#PROFILES

spring.profiles.active =6〗Γ活動(dòng)配置文件的逗號(hào)分隔列表。

spring.profiles.include =#無(wú)條件地激活指定的逗號(hào)分隔的概要文件探遵。

#SENDGRID(SendGridAutoConfiguration)

spring.sendgrid.api-key =#SendGrid api key(用戶名/密碼的替代)

spring.sendgrid.username =#SendGrid帳戶用戶名

spring.sendgrid.password =#SendGrid帳戶密碼

spring.sendgrid.proxy.host =#SendGrid代理主機(jī)

spring.sendgrid.proxy.port =#SendGrid代理端口

#----------------------------------------

#WEB PROPERTIES

#----------------------------------------

#MULTIPART(MultipartProperties)

multipart.enabled = true #啟用對(duì)多部分上傳的支持窟赏。

multipart.file-size-threshold = 0 #將文件寫入磁盤的閾值。值可以使用后綴“MB”或“KB”表示兆字節(jié)或千字節(jié)大小箱季。

multipart.location =#上傳文件的中間位置涯穷。

multipart.max-file-size = 1Mb #最大文件大小。值可以使用后綴“MB”或“KB”表示兆字節(jié)或千字節(jié)大小藏雏。

multipart.max-request-size = 10Mb #最大請(qǐng)求大小拷况。值可以使用后綴“MB”或“KB”表示兆字節(jié)或千字節(jié)大小。

#EMBEDDED SERVER CONFIGURATION(ServerProperties)

server.address =#服務(wù)器應(yīng)綁定到的網(wǎng)絡(luò)地址掘殴。

server.compression.enabled = false #如果啟用了響應(yīng)壓縮赚瘦。

server.compression.excluded-user-agents =#要從壓縮中排除的用戶代理的列表。

server.compression.mime-types =#應(yīng)壓縮的MIME類型的逗號(hào)分隔列表奏寨。例如text / html蚤告,text / css,application / json

server.compression.min-response-size =#要執(zhí)行壓縮所需的最小響應(yīng)大小服爷。例如2048

server.context-parameters杜恰。* =#Servlet上下文初始化參數(shù)。例如server.context-parameters.a = 阿爾法

server.context-path =#應(yīng)用程序的上下文路徑仍源。

server.display-name = application #顯示應(yīng)用程序的名稱心褐。

server.error.include-stacktrace = never #何時(shí)包含“stacktrace”屬性。

server.error.path = / error#錯(cuò)誤控制器的路徑笼踩。

server.error.whitelabel.enabled = true #在服務(wù)器錯(cuò)誤的情況下啟用瀏覽器中顯示的默認(rèn)錯(cuò)誤頁(yè)面逗爹。

server.jsp-servlet.class-name = org .apache.jasper.servlet.JspServlet#JSP servlet的類名。

server.jsp-servlet.init-parameters嚎于。* =#用于配置JSP servlet的初始化參數(shù)

server.jsp-servlet.registered = true #是否注冊(cè)了JSP servlet

server.port = 8080 #服務(wù)器HTTP端口掘而。

server.server-header =#在服務(wù)器響應(yīng)頭中發(fā)送的值(如果為空,則使用servlet容器默認(rèn)值)

server.servlet-path = /#主調(diào)度程序servlet的路徑于购。

server.session.cookie.comment =#對(duì)會(huì)話cookie進(jìn)行注釋袍睡。

server.session.cookie.domain =#會(huì)話cookie的域。

server.session.cookie.http-only =@呱“HttpOnly”標(biāo)志為會(huì)話cookie斑胜。

server.session.cookie.max-age =#會(huì)話Cookie的最大時(shí)間(以秒為單位)控淡。

server.session.cookie.name =#會(huì)話cookie名稱。

server.session.cookie.path =#會(huì)話cookie的路徑止潘。

server.session.cookie.secure =2籼浚“安全”標(biāo)志的會(huì)話cookie。

server.session.persistent = false #在重新啟動(dòng)之間保持會(huì)話數(shù)據(jù)凭戴。

server.session.store-dir =#用于存儲(chǔ)會(huì)話數(shù)據(jù)的目錄涧狮。

server.session.timeout =#會(huì)話超時(shí)(以秒為單位)。

server.session.tracking-modes =#會(huì)話跟蹤模式(以下一個(gè)或多個(gè):“cookie”么夫,“url”勋篓,“ssl”)。

server.ssl.ciphers =#支持的SSL密碼魏割。

server.ssl.client-auth =#是否需要客戶端身份驗(yàn)證(“需要”)或需要(“需要”)譬嚣。需要信任存儲(chǔ)。

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 =#

server.tomcat.accesslog.directory = logs #創(chuàng)建日志文件的目錄钞它“菀可以相對(duì)于tomcat的base dir或絕對(duì)。

server.tomcat.accesslog.enabled = false #啟用訪問(wèn)日志遭垛。

server.tomcat.accesslog.pattern = common #訪問(wèn)日志的格式模式尼桶。

server.tomcat.accesslog.prefix = access_log #日志文件名前綴。

server.tomcat.accesslog.suffix = .log#日志文件名后綴锯仪。

server.tomcat.background-processor-delay = 30 #調(diào)用backgroundProcess方法之間的延遲(以秒為單位)泵督。

server.tomcat.basedir =#Tomcat基目錄。如果未指定庶喜,將使用臨時(shí)目錄小腊。

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}#正則表達(dá)式匹配可信IP地址棺棵。  

server.tomcat.max-http-header-size = 0 #HTTP消息頭的最大大小(以字節(jié)為單位)熄捍。

server.tomcat.max-threads = 0 #最大工作線程數(shù)烛恤。

server.tomcat.port-header = X -Forwarded-Port#用于覆蓋原始端口值的HTTP頭的名稱。

server.tomcat.protocol-header =#保存?zhèn)魅雲(yún)f(xié)議的頭余耽,通常命名為“X-Forwarded-Proto”缚柏。

server.tomcat.protocol-header-https-value = https #指示入局請(qǐng)求使用SSL的協(xié)議頭的值。

server.tomcat.remote-ip-header =#從中提取遠(yuǎn)程ip的http標(biāo)頭的名稱碟贾。例如X-FORWARDED-FOR

server.tomcat.uri-encoding = UTF -8#用于解碼URI的字符編碼船惨。

server.undertow.accesslog.dir =#訪問(wèn)日志目錄。

server.undertow.accesslog.enabled = false #啟用訪問(wèn)日志缕陕。

server.undertow.accesslog.pattern = common #訪問(wèn)日志的格式模式粱锐。

server.undertow.buffer-size =#每個(gè)緩沖區(qū)的大小(以字節(jié)為單位)扛邑。

server.undertow.buffers-per-region =#每個(gè)區(qū)域的緩沖區(qū)數(shù)怜浅。

server.undertow.direct-buffers =#在Java堆外分配緩沖區(qū)。

server.undertow.io-threads =#為worker創(chuàng)建的I / O線程數(shù)蔬崩。

server.undertow.worker-threads =#工作線程數(shù)恶座。

server.use-forward-headers =#如果X-Forwarded- *頭應(yīng)該應(yīng)用于HttpRequest。

#FREEMARKER(FreeMarkerAutoConfiguration)

spring.freemarker.allow-request-override = false #設(shè)置是否允許HttpServletRequest屬性覆蓋(隱藏)控制器生成的同名模型屬性沥阳。

spring.freemarker.allow-session-override = false #設(shè)置是否允許HttpSession屬性覆蓋(隱藏)控制器生成的同名模型屬性跨琳。

spring.freemarker.cache = false #啟用模板緩存。

spring.freemarker.charset = UTF -8#模板編碼桐罕。

spring.freemarker.check-template-location = true #檢查模板位置是否存在脉让。

spring.freemarker.content-type = text / html#Content-Type值。

spring.freemarker.enabled = true #為此技術(shù)啟用MVC視圖分辨率功炮。

spring.freemarker.expose-request-attributes = false #設(shè)置是否應(yīng)在與模板合并之前將所有請(qǐng)求屬性添加到模型溅潜。

spring.freemarker.expose-session-attributes = false #設(shè)置在與模板合并之前是否應(yīng)將所有HttpSession屬性添加到模型。

spring.freemarker.expose-spring-macro-helpers = true #設(shè)置是否公開一個(gè)RequestContext供Spring的宏庫(kù)使用薪伏,名稱為“springMacroRequestContext”滚澜。

spring.freemarker.prefer-file-system-access = true #首選模板加載的文件系統(tǒng)訪問(wèn)。文件系統(tǒng)訪問(wèn)啟用對(duì)模板更改的熱檢測(cè)嫁怀。

spring.freemarker.prefix =#在構(gòu)建URL時(shí)设捐,預(yù)先查看名稱的前綴借浊。

spring.freemarker.request-context-attribute =#所有視圖的RequestContext屬性的名稱。

spring.freemarker.settings萝招。* =#眾所周知的FreeMarker鍵蚂斤,它將被傳遞給FreeMarker的配置。

spring.freemarker.suffix =#構(gòu)建URL時(shí)附加到視圖名稱的后綴即寒。

spring.freemarker.template-loader-path = classpath :/ templates /#模板路徑的逗號(hào)分隔列表橡淆。

spring.freemarker.view-names =U儇可以解析的視圖名稱的白名單母赵。

#GROOVY TEMPLATES(GroovyTemplateAutoConfiguration)

spring.groovy.template.allow-request-override = false #設(shè)置是否允許HttpServletRequest屬性覆蓋(隱藏)控制器生成的同名模型屬性。

spring.groovy.template.allow-session-override = false #設(shè)置是否允許HttpSession屬性覆蓋(隱藏)控制器生成的同名的模型屬性具滴。

spring.groovy.template.cache =#啟用模板緩存凹嘲。

spring.groovy.template.charset = UTF -8#模板編碼。

spring.groovy.template.check-template-location = true #檢查模板位置是否存在构韵。

spring.groovy.template.configuration周蹭。* =#參見(jiàn)GroovyMarkupConfigurer

spring.groovy.template.content-type = test / html#Content-Type值。

spring.groovy.template.enabled = true #為此技術(shù)啟用MVC視圖分辨率疲恢。

spring.groovy.template.expose-request-attributes = false #設(shè)置是否應(yīng)在合并模板之前將所有請(qǐng)求屬性添加到模型凶朗。

spring.groovy.template.expose-session-attributes = false #設(shè)置在與模板合并之前是否應(yīng)該將所有HttpSession屬性添加到模型。

spring.groovy.template.expose-spring-macro-helpers = true #設(shè)置是否公開一個(gè)RequestContext供Spring的宏庫(kù)使用显拳,名稱為“springMacroRequestContext”棚愤。

spring.groovy.template.prefix =#構(gòu)建URL時(shí),在前面添加用于查看名稱的前綴杂数。

spring.groovy.template.request-context-attribute =#所有視圖的RequestContext屬性的名稱宛畦。

spring.groovy.template.resource-loader-path = classpath :/ templates /#模板路徑。

spring.groovy.template.suffix = .tpl#構(gòu)建URL時(shí)附加到視圖名稱的后綴揍移。

spring.groovy.template.view-names =4魏停可以解析的視圖名稱的白名單。

#SPRING HATEOAS(HateoasProperties)

spring.hateoas.use-hal-as-default-json-media-type = true #指定是否應(yīng)該將application / hal + json響應(yīng)發(fā)送到接受application / json的請(qǐng)求那伐。

#HTTP消息轉(zhuǎn)換

spring.http.converters.preferred-json-mapper = jackson #首選用于HTTP消息轉(zhuǎn)換的JSON映射程序踏施。設(shè)置為“gson”以強(qiáng)制使用Gson,當(dāng)它和Jackson都在類路徑上時(shí)罕邀。

#HTTP encoding(HttpEncodingProperties)

spring.http.encoding.charset = UTF -8#HTTP請(qǐng)求和響應(yīng)的字符集读规。如果未明確設(shè)置,則添加到“Content-Type”標(biāo)題燃少。

spring.http.encoding.enabled = true #啟用http編碼支持束亏。

spring.http.encoding.force = true #強(qiáng)制編碼到配置的字符集上HTTP請(qǐng)求和響應(yīng)。

#JACKSON(JacksonProperties)

spring.jackson.date-format =#日期格式字符串或完全限定的日期格式類名稱阵具。例如yyyy-MM-dd HH:mm:ss碍遍。

spring.jackson.deserialization定铜。* =#Jackson on / off功能影響Java對(duì)象的反序列化方式。

spring.jackson.generator怕敬。* =#Jackson的on / off功能用于生成器揣炕。

spring.jackson.joda-date-time-format =#Joda日期時(shí)間格式字符串。如果未配置东跪,如果使用格式字符串配置畸陡,“date-format”將用作后備。

spring.jackson.locale =#用于格式化的區(qū)域設(shè)置虽填。

spring.jackson.mapper丁恭。* =#Jackson通用開/關(guān)功能。

spring.jackson.parser斋日。* =#Jackson解析器的on / off功能牲览。

spring.jackson.property-naming-strategy =#Jackson的PropertyNamingStrategy上的一個(gè)常量。也可以是PropertyNamingStrategy子類的完全限定類名恶守。

spring.jackson.serialization。* =#Jackson on / off功能影響Java對(duì)象的序列化方式橡伞。

spring.jackson.serialization-inclusion =E菏控制序列化期間屬性的包含。使用Jackson的JsonInclude.Include枚舉中的值之一進(jìn)行配置宪哩。

spring.jackson.time-zone =#格式化日期時(shí)使用的時(shí)區(qū)。例如America / Los_Angeles

#JERSEY(JerseyProperties)

spring.jersey.application-path =#作為應(yīng)用程序的基本URI的路徑哑了。如果指定涂圆,則覆蓋“@ApplicationPath”的值嚼鹉。

spring.jersey.filter.order = 0 #Jersey過(guò)濾器鏈的順序。

spring.jersey.init锭吨。* =#通過(guò)servlet或過(guò)濾器傳遞給Jersey的初始參數(shù)。

spring.jersey.type = servlet #Jersey集成類型≡世郑可以是“servlet”或“filter”削咆。

#SPRING MOBILE DEVICE VIEWS(DeviceDelegatingViewResolverAutoConfiguration)

spring.mobile.devicedelegatingviewresolver.enable-fallback = false #啟用支持回退解析牍疏。

spring.mobile.devicedelegatingviewresolver.enabled = false #啟用設(shè)備視圖解析器。

spring.mobile.devicedelegatingviewresolver.mobile-prefix = mobile /#預(yù)先在移動(dòng)設(shè)備上查看名稱的前綴拨齐。

spring.mobile.devicedelegatingviewresolver.mobile-suffix =#附加到移動(dòng)設(shè)備的視圖名稱的后綴鳞陨。

spring.mobile.devicedelegatingviewresolver.normal-prefix =#前綴,用于查看常規(guī)設(shè)備的名稱奏黑。

spring.mobile.devicedelegatingviewresolver.normal-suffix =#附加到普通設(shè)備的視圖名稱的后綴炊邦。

spring.mobile.devicedelegatingviewresolver.tablet-prefix = tablet /#預(yù)先查看平板電腦設(shè)備名稱的前綴。

spring.mobile.devicedelegatingviewresolver.tablet-suffix =#附加到平板電腦設(shè)備的視圖名稱的后綴熟史。

#SPRING MOBILE SITE PREFERENCE(SitePreferenceAutoConfiguration)

spring.mobile.sitepreference.enabled = true #啟用SitePreferenceHandler馁害。

#MUSTACHE TEMPLATES(MustacheAutoConfiguration)

spring.mustache.cache = false #啟用模板緩存。

spring.mustache.charset = UTF -8#模板編碼蹂匹。

spring.mustache.check-template-location = true #檢查模板位置是否存在碘菜。

spring.mustache.content-type = text / html#Content-Type值。

spring.mustache.enabled = true #為此技術(shù)啟用MVC視圖分辨率。

spring.mustache.prefix = classpath :/ templates /#要應(yīng)用于模板名稱的前綴忍啸。

spring.mustache.suffix = .html#應(yīng)用于模板名稱的后綴仰坦。

spring.mustache.view-names =#可以解析的視圖名稱的白名單计雌。

#SPRING MVC(WebMvcProperties)

spring.mvc.async.request-timeout =#異步請(qǐng)求處理超時(shí)之前的時(shí)間(以毫秒為單位)悄晃。

spring.mvc.date-format =#要使用的日期格式。例如dd / MM / yyyy凿滤。

spring.mvc.dispatch-trace-request = false #將TRACE請(qǐng)求分發(fā)到FrameworkServlet doService方法妈橄。

spring.mvc.dispatch-options-request = false #向FrameworkServlet doService方法分發(fā)OPTIONS請(qǐng)求。

spring.mvc.favicon.enabled = true #啟用favicon.ico的解析翁脆。

spring.mvc.ignore-default-model-on-redirect = true #如果在重定向場(chǎng)景中應(yīng)該忽略“默認(rèn)”模型的內(nèi)容眷蚓。

spring.mvc.locale =#要使用的區(qū)域設(shè)置。

spring.mvc.media-types反番。* =#將文件擴(kuò)展名映射到用于內(nèi)容協(xié)商的媒體類型沙热。

spring.mvc.message-codes-resolver-format =#消息代碼的格式化策略。例如PREFIX_ERROR_CODE罢缸。

spring.mvc.static-path-pattern = / **#用于靜態(tài)資源的路徑模式篙贸。

spring.mvc.throw-exception-if-no-handler-found = false #如果沒(méi)有找到處理請(qǐng)求的處理程序,應(yīng)拋出“NoHandlerFoundException”祖能。

spring.mvc.view.prefix =#Spring MVC視圖前綴歉秫。

spring.mvc.view.suffix =#Spring MVC視圖后綴蛾洛。

#SPRING RESOURCES HANDLING(ResourceProperties)

spring.resources.add-mappings = true #啟用默認(rèn)資源處理养铸。

spring.resources.cache-period =#資源處理程序服務(wù)的資源的高速緩存時(shí)間段(以秒為單位)。

spring.resources.chain.cache = true #在資源鏈中啟用緩存轧膘。

spring.resources.chain.enabled =#啟用Spring資源處理鏈钞螟。默認(rèn)情況下禁用,除非已啟用至少一個(gè)策略谎碍。

spring.resources.chain.html-application-cache = false #啟用HTML5應(yīng)用程序緩存清單重寫鳞滨。

spring.resources.chain.strategy.content.enabled = false #啟用內(nèi)容版本策略。

spring.resources.chain.strategy.content.paths = / **#要應(yīng)用于版本策略的模式的逗號(hào)分隔列表蟆淀。

spring.resources.chain.strategy.fixed.enabled = false #啟用固定版本策略拯啦。

spring.resources.chain.strategy.fixed.paths =#要應(yīng)用于版本策略的模式的逗號(hào)分隔列表。

spring.resources.chain.strategy.fixed.version =#用于版本策略的版本字符串熔任。

spring.resources.static-locations = classpath :/ META-INF / resources /褒链,classpath:/ resources /,classpath:/ static /疑苔,classpath:/ public /#靜態(tài)資源的位置甫匹。

#SPRING SOCIAL(SocialWebAutoConfiguration)

spring.social.auto-connection-views = false #啟用支持的提供程序的連接狀態(tài)視圖。

#SPRING SOCIAL FACEBOOK(FacebookAutoConfiguration)

spring.social.facebook.app-id =#你的應(yīng)用程序的Facebook應(yīng)用程序ID

spring.social.facebook.app-secret =#你的應(yīng)用程序的Facebook應(yīng)用程序秘密

#SPRING SOCIAL LINKEDIN(LinkedInAutoConfiguration)

spring.social.linkedin.app-id =#您的應(yīng)用程序的LinkedIn應(yīng)用程序ID

spring.social.linkedin.app-secret =#你的應(yīng)用程序的LinkedIn應(yīng)用程序秘密

#SPRING SOCIAL TWITTER(TwitterAutoConfiguration)

spring.social.twitter.app-id =#您應(yīng)用程序的Twitter應(yīng)用程序ID

spring.social.twitter.app-secret =#你的應(yīng)用程序的Twitter應(yīng)用程序秘密

#THYMELEAF(ThymeleafAutoConfiguration)

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 =#應(yīng)該從解析中排除的以逗號(hào)分隔的視圖名稱列表刻恭。

spring.thymeleaf.mode = HTML5 #要應(yīng)用于模板的模板模式。另請(qǐng)參見(jiàn)StandardTemplateModeHandlers扯夭。

spring.thymeleaf.prefix = classpath :/ templates /#構(gòu)建URL時(shí)預(yù)先查看名稱的前綴吠各。

spring.thymeleaf.suffix = .html#構(gòu)建URL時(shí)附加到視圖名稱的后綴。

spring.thymeleaf.template-resolver-order =#鏈中模板解析器的順序勉抓。

spring.thymeleaf.view-names =<致可以解析的以逗號(hào)分隔的視圖名稱列表。

#VELOCITY TEMPLATES(VelocityAutoConfiguration)

spring.velocity.allow-request-override = false #設(shè)置是否允許HttpServletRequest屬性覆蓋(隱藏)控制器生成的同名模型屬性藕筋。

spring.velocity.allow-session-override = false #設(shè)置是否允許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輔助對(duì)象的名稱暇藏。

spring.velocity.enabled = true #為此技術(shù)啟用MVC視圖分辨率蜜笤。

spring.velocity.expose-request-attributes = false #設(shè)置是否應(yīng)在與模板合并之前將所有請(qǐng)求屬性添加到模型。

spring.velocity.expose-session-attributes = false #設(shè)置在與模板合并之前是否應(yīng)該將所有HttpSession屬性添加到模型盐碱。

spring.velocity.expose-spring-macro-helpers = true #設(shè)置是否公開一個(gè)RequestContext供Spring的宏庫(kù)使用把兔,名稱為“springMacroRequestContext”。

spring.velocity.number-tool-attribute =#要在視圖的Velocity上下文中公開的NumberTool輔助對(duì)象的名稱瓮顽。

spring.velocity.prefer-file-system-access = true #首選模板加載的文件系統(tǒng)訪問(wèn)县好。文件系統(tǒng)訪問(wèn)啟用對(duì)模板更改的熱檢測(cè)。

spring.velocity.prefix =#構(gòu)建URL時(shí)在前面添加用于查看名稱的前綴暖混。

spring.velocity.properties缕贡。* =#額外的速度屬性。

spring.velocity.request-context-attribute =#所有視圖的RequestContext屬性的名稱拣播。

spring.velocity.resource-loader-path = classpath :/ templates /#模板路徑晾咪。

spring.velocity.suffix = .vm #構(gòu)建URL時(shí)附加到視圖名稱的后綴。

spring.velocity.toolbox-config-location =#Velocity工具箱配置位置贮配。例如`/ WEB-INF / toolbox.xml

spring.velocity.view-names =5耄可以解析的視圖名稱的白名單。

#----------------------------------------

#安全性

#----------------------------------------

#SECURITY(SecurityProperties)

security.basic.authorize-mode = role #應(yīng)用安全授權(quán)模式牧嫉。

security.basic.enabled = true #啟用基本認(rèn)證剂跟。

security.basic.path = / **#以逗號(hào)分隔的安全路徑列表减途。

security.basic.realm = Spring #HTTP基本領(lǐng)域名稱。

security.enable-csrf = false #啟用跨站點(diǎn)請(qǐng)求偽造支持曹洽。

security.filter-order = 0 #安全過(guò)濾器鏈順序鳍置。

security.filter-dispatcher-types = ASYNC ,F(xiàn)ORWARD送淆,INCLUDE税产,REQUEST#安全過(guò)濾器鏈分派器類型。

security.headers.cache = true #啟用緩存控制HTTP頭偷崩。

security.headers.content-type = true #啟用“X-Content-Type-Options”標(biāo)頭辟拷。

security.headers.frame = true #啟用“X-Frame-Options”標(biāo)頭。

security.headers.hsts =#HTTP嚴(yán)格傳輸安全(HSTS)模式(無(wú)阐斜,域衫冻,全部)。

security.headers.xss = true #啟用跨站點(diǎn)腳本(XSS)保護(hù)谒出。

security.ignored =#要從默認(rèn)安全路徑中排除的路徑的逗號(hào)分隔列表隅俘。

security.require-ssl = false #為所有請(qǐng)求啟用安全通道。

security.sessions = stateless #會(huì)話創(chuàng)建策略(始終笤喳,從不为居,if_required,無(wú)狀態(tài))杀狡。

security.user.name = user #默認(rèn)用戶名蒙畴。

security.user.password =#默認(rèn)用戶名的密碼。默認(rèn)情況下呜象,在啟動(dòng)時(shí)記錄隨機(jī)密碼膳凝。

security.user.role = USER #為默認(rèn)用戶名授予角色弹囚。

#SECURITY OAUTH2 CLIENT(OAuth2ClientProperties

security.oauth2.client.client-id =#OAuth2客戶端ID躺翻。

security.oauth2.client.client-secret =#OAuth2客戶端密鑰。默認(rèn)情況下會(huì)生成隨機(jī)密鑰

#SECURITY OAUTH2 RESOURCES(ResourceServerProperties

security.oauth2.resource.id =#資源的標(biāo)識(shí)符。

security.oauth2.resource.jwt.key-uri =#JWT令牌的URI子姜。如果值不可用并且密鑰為public,則可以設(shè)置楼入。

security.oauth2.resource.jwt.key-value =#JWT令牌的驗(yàn)證密鑰哥捕。可以是對(duì)稱秘密或PEM編碼的RSA公鑰嘉熊。

security.oauth2.resource.prefer-token-info = true #使用令牌info遥赚,可以設(shè)置為false來(lái)使用用戶信息。

security.oauth2.resource.service-id = resource #

security.oauth2.resource.token-info-uri =#令牌解碼端點(diǎn)的URI阐肤。

security.oauth2.resource.token-type =#使用userInfoUri時(shí)要發(fā)送的令牌類型凫佛。

security.oauth2.resource.user-info-uri =#用戶端點(diǎn)的URI讲坎。

#SECURITY OAUTH2 SSO(OAuth2SsoProperties

security.oauth2.sso.filter-order =#如果未提供明確的WebSecurityConfigurerAdapter,則應(yīng)用過(guò)濾順序

security.oauth2.sso.login-path = / login#登錄頁(yè)面的路徑愧薛,即觸發(fā)重定向到OAuth2授權(quán)服務(wù)器的路徑

#----------------------------------------

#數(shù)據(jù)屬性

#----------------------------------------

#FLYWAY(FlywayProperties)

flyway.baseline-description =#

flyway.baseline-version = 1 #版本開始遷移

flyway.baseline-on-migrate =#

flyway.check-location = false #檢查遷移腳本位置是否存在晨炕。

flyway.clean-on-validation-error =#

flyway.enabled = true #啟用flyway 。

flyway.encoding =#

flyway.ignore-failed-future-migration =#

flyway.init-sqls =#在獲取連接后立即執(zhí)行初始化連接的SQL語(yǔ)句毫炉。

flyway.locations = classpath:db / migration#遷移腳本的位置

flyway.out-of-order =#

flyway.password =#JDBC密碼瓮栗,如果你想讓Flyway創(chuàng)建自己的DataSource

flyway.placeholder-prefix =#

flyway.placeholder-replacement =#

flyway.placeholder-suffix =#

flyway.placeholders。* =#

flyway.schemas =#schemas要更新

flyway.sql-migration-prefix = V #

flyway.sql-migration-separator =#

flyway.sql-migration-suffix = .sql#

flyway.table =#

flyway.url =#要遷移的數(shù)據(jù)庫(kù)的JDBC URL瞄勾。如果未設(shè)置费奸,則使用主配置的數(shù)據(jù)源。

flyway.user =#要遷移的數(shù)據(jù)庫(kù)的登錄用戶进陡。

flyway.validate-on-migrate =#

#LIQUIBASE(LiquibaseProperties)

liquibase.change-log = classpath :/db/changelog/db.changelog-master.yaml#更改日志配置路徑愿阐。

liquibase.check-change-log-location = true #檢查更改日志位置是否存在。

liquibase.contexts =#要使用的運(yùn)行時(shí)上下文的逗號(hào)分隔列表趾疚。

liquibase.default-schema =#默認(rèn)數(shù)據(jù)庫(kù)模式换况。

liquibase.drop-first = false #刪除數(shù)據(jù)庫(kù)模式。

liquibase.enabled = true #啟用liquibase支持盗蟆。

liquibase.labels =#要使用的運(yùn)行時(shí)標(biāo)簽的逗號(hào)分隔列表戈二。

liquibase.parameters。* =#更改日志參數(shù)喳资。

liquibase.password =#要遷移的數(shù)據(jù)庫(kù)的登錄密碼觉吭。

liquibase.url =#要遷移的數(shù)據(jù)庫(kù)的JDBC URL。如果未設(shè)置仆邓,則使用主配置的數(shù)據(jù)源鲜滩。

liquibase.user =#要遷移的數(shù)據(jù)庫(kù)的登錄用戶。

#DAO(PersistenceExceptionTranslationAutoConfiguration)

spring.dao.exceptiontranslation.enabled = true #啟用PersistenceExceptionTranslationPostProcessor节值。

#CASSANDRA(Cassandra屬性)

spring.data.cassandra.cluster-name =#Cassandra集群的名稱徙硅。

spring.data.cassandra.compression =#Cassandra二進(jìn)制協(xié)議支持的壓縮。

spring.data.cassandra.connect-timeout-millis =#套接字選項(xiàng):連接超時(shí)搞疗。

spring.data.cassandra.consistency-level =#查詢一致性級(jí)別嗓蘑。

spring.data.cassandra.contact-points = localhost #群集節(jié)點(diǎn)地址的逗號(hào)分隔列表。

spring.data.cassandra.fetch-size =#查詢默認(rèn)抓取大小匿乃。

spring.data.cassandra.keyspace-name =#要使用的鍵空間名稱桩皿。

spring.data.cassandra.load-balancing-policy =#負(fù)載均衡策略的類名稱。

spring.data.cassandra.port =#Cassandra服務(wù)器的端口幢炸。

spring.data.cassandra.password =#服務(wù)器的登錄密碼泄隔。

spring.data.cassandra.read-timeout-millis =#Socket選項(xiàng):讀取超時(shí)。

spring.data.cassandra.reconnection-policy =#重新連接策略類宛徊。

spring.data.cassandra.retry-policy =#重試策略的類名佛嬉。

spring.data.cassandra.serial-consistency-level =#查詢串行一致性級(jí)別逻澳。

spring.data.cassandra.ssl = false #啟用SSL支持。

spring.data.cassandra.username =#服務(wù)器的登錄用戶暖呕。

#ELASTICSEARCH(ElasticsearchProperties)

spring.data.elasticsearch.cluster-name = elasticsearch #Elasticsearch集群名稱斜做。

spring.data.elasticsearch.cluster-nodes =#群集節(jié)點(diǎn)地址的逗號(hào)分隔列表。如果未指定缰揪,則啟動(dòng)客戶機(jī)節(jié)點(diǎn)陨享。

spring.data.elasticsearch.properties。* =#用于配置客戶端的其他屬性钝腺。

spring.data.elasticsearch.repositories.enabled = true #啟用Elasticsearch存儲(chǔ)庫(kù)抛姑。

#MONGODB(MongoProperties)

spring.data.mongodb.authentication-database =#認(rèn)證數(shù)據(jù)庫(kù)名稱。

spring.data.mongodb.database = test #數(shù)據(jù)庫(kù)名稱艳狐。

spring.data.mongodb.field命名策略 =#要使用的FieldNamingStrategy的完全限定名稱定硝。

spring.data.mongodb.grid-fs-database =#GridFS數(shù)據(jù)庫(kù)名稱。

spring.data.mongodb.host = localhost #Mongo服務(wù)器主機(jī)毫目。

spring.data.mongodb.password =#mongo服務(wù)器的登錄密碼蔬啡。

spring.data.mongodb.port = 27017 #Mongo服務(wù)器端口。

spring.data.mongodb.repositories.enabled = true #啟用Mongo存儲(chǔ)庫(kù)镀虐。

spring.data.mongodb.uri = mongodb :// localhost / test#Mongo數(shù)據(jù)庫(kù)URI箱蟆。設(shè)置時(shí),將忽略主機(jī)和端口刮便。

spring.data.mongodb.username =#mongo服務(wù)器的登錄用戶空猜。

#DATA REST(RepositoryRestProperties)

spring.data.rest.base-path =#Spring Data REST用于公開資源庫(kù)資源的基本路徑。

spring.data.rest.default-page-size =#默認(rèn)的頁(yè)面大小恨旱。

spring.data.rest.enable-enum-translation =#通過(guò)Spring Data REST默認(rèn)資源包啟用枚舉值轉(zhuǎn)換辈毯。

spring.data.rest.limit-param-name =#URL查詢字符串參數(shù)的名稱,指示一次返回的結(jié)果數(shù)搜贤。

spring.data.rest.max-page-size =#最大頁(yè)面大小谆沃。

spring.data.rest.page-param-name =#指示要返回哪個(gè)頁(yè)面的URL查詢字符串參數(shù)的名稱。

spring.data.rest.return-body-on-create =#創(chuàng)建實(shí)體后返回響應(yīng)體仪芒。

spring.data.rest.return-body-on-update =#更新實(shí)體后返回響應(yīng)體唁影。

spring.data.rest.sort-param-name =#URL查詢字符串參數(shù)的名稱,指示對(duì)結(jié)果進(jìn)行排序的方向桌硫。

#SOLR(SolrProperties)

spring.data.solr.host = HTTP ://127.0.0.1:8983 / Solr的#Solr的主機(jī)夭咬。如果設(shè)置了“zk-host”,則忽略铆隘。

spring.data.solr.repositories.enabled = true #啟用Solr存儲(chǔ)庫(kù)。

spring.data.solr.zk-host =#ZooKeeper主機(jī)地址南用,格式為HOST:PORT膀钠。

#DATASOURCE(DataSourceAutoConfiguration&DataSourceProperties)

spring.datasource.continue-on-error = false #初始化數(shù)據(jù)庫(kù)時(shí)發(fā)生錯(cuò)誤時(shí)不要停止掏湾。

spring.datasource.data =#Data(DML)腳本資源引用。

spring.datasource.driver-class-name =#JDBC驅(qū)動(dòng)程序的標(biāo)準(zhǔn)名稱肿嘲。默認(rèn)情況下基于URL自動(dòng)檢測(cè)融击。

spring.datasource.initialize = true #使用'data.sql'填充數(shù)據(jù)庫(kù)。

spring.datasource.jmx-enabled = false #啟用JMX支持(如果由底層池提供)雳窟。

spring.datasource.jndi-name =#JNDI數(shù)據(jù)源的位置尊浪。類,url封救,用戶名和密碼設(shè)置時(shí)將被忽略拇涤。

spring.datasource.max-active =#例如100

spring.datasource.max-idle =#例8

spring.datasource.max-wait =

spring .datasource.min-evictable-idle-time-millis =

spring .datasource.min-idle = 8

spring.datasource.name = testdb #數(shù)據(jù)源的名稱。

spring.datasource.password =#數(shù)據(jù)庫(kù)的登錄密碼誉结。

spring.datasource.platform = all #在模式資源(schema - $ {platform} .sql)中使用的平臺(tái)鹅士。

spring.datasource.schema =#模式(DDL)腳本資源引用。

spring.datasource.separator =; #SQL初始化腳本中的語(yǔ)句分隔符惩坑。

spring.datasource.sql-script-encoding =#SQL腳本編碼掉盅。

spring.datasource.test-on-borrow =#例如false

spring.datasource.test-on-return =#例如false

spring.datasource.test-while-idle =#

spring.datasource.time-between-eviction-runs-millis = 1

spring.datasource.type =#要使用的連接池實(shí)現(xiàn)的完全限定名稱。默認(rèn)情況下以舒,它是從類路徑自動(dòng)檢測(cè)趾痘。

spring.datasource.url =#數(shù)據(jù)庫(kù)的JDBC url。

spring.datasource.username =

spring .datasource.validation-query =

#H2 Web控制臺(tái)(H2ConsoleProperties)

spring.h2.console.enabled = false #啟用控制臺(tái)蔓钟。

spring.h2.console.path = / h2-consoleS榔保控制臺(tái)可用的路徑。

#JOOQ(JooqAutoConfiguration)

spring.jooq.sql-dialect =#SQLDialect與配置的數(shù)據(jù)源通信時(shí)使用的JOOQ奋刽。例如POSTGRES

#JPA(JpaBaseConfiguration瓦侮,HibernateJpaAutoConfiguration)

spring.data.jpa.repositories.enabled = true #啟用JPA存儲(chǔ)庫(kù)。

spring.jpa.database =#要操作的目標(biāo)數(shù)據(jù)庫(kù)佣谐,默認(rèn)情況下自動(dòng)檢測(cè)肚吏。也可以使用“databasePlatform”屬性進(jìn)行設(shè)置。

spring.jpa.database-platform =#要操作的目標(biāo)數(shù)據(jù)庫(kù)的名稱狭魂,默認(rèn)情況下自動(dòng)檢測(cè)罚攀。可以選擇使用“數(shù)據(jù)庫(kù)”設(shè)置枚舉雌澄。

spring.jpa.generate-ddl = false #在啟動(dòng)時(shí)初始化模式。

spring.jpa.hibernate.ddl-auto =#DDL模式镐牺。這實(shí)際上是“hibernate.hbm2ddl.auto”屬性的快捷方式炫掐。使用嵌入式數(shù)據(jù)庫(kù)時(shí),默認(rèn)為“create-drop”睬涧,否則為“none”募胃。

spring.jpa.hibernate.naming-strategy =#命名策略完全限定名旗唁。

spring.jpa.open-in-view = true #注冊(cè)O(shè)penEntityManagerInViewInterceptor。將JPA EntityManager綁定到線程以進(jìn)行請(qǐng)求的整個(gè)處理痹束。

spring.jpa.properties检疫。* =#在JPA提供程序上設(shè)置的其他本機(jī)屬性。

spring.jpa.show-sql = false #啟用SQL語(yǔ)句的日志記錄祷嘶。

#JTA(JtaAutoConfiguration)

spring.jta屎媳。* =#技術(shù)特定配置

spring.jta.log-dir =#事務(wù)日志目錄。

#ATOMIKOS

spring.jta.atomikos.connectionfactory.borrow-connection-timeout = 30 #從池借用連接的超時(shí)(以秒為單位)论巍。

spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag = true #創(chuàng)建會(huì)話時(shí)是否忽略事務(wù)標(biāo)志烛谊。

spring.jta.atomikos.connectionfactory.local-transaction-mode = false #是否需要本地事務(wù)。

spring.jta.atomikos.connectionfactory.maintenance-interval = 60 #池維護(hù)線程運(yùn)行之間的時(shí)間(以秒為單位)环壤。

spring.jta.atomikos.connectionfactory.max-idle-time = 60 #從池中清除連接的時(shí)間(以秒為單位)晒来。

spring.jta.atomikos.connectionfactory.max-lifetime = 0 #連接在被銷毀之前可以被合并的時(shí)間(以秒為單位)。0表示無(wú)限制郑现。

spring.jta.atomikos.connectionfactory.max-pool-size = 1 #池的最大大小湃崩。

spring.jta.atomikos.connectionfactory.min-pool-size = 1 #池的最小大小。

spring.jta.atomikos.connectionfactory.reap-timeout = 0 #借用連接的收集超時(shí)(以秒為單位)接箫。0表示無(wú)限制攒读。

spring.jta.atomikos.connectionfactory.unique-resource-name = jmsConnectionFactory #用于在恢復(fù)期間標(biāo)識(shí)資源的唯一名稱。

spring.jta.atomikos.datasource.borrow-connection-timeout = 30 #從池借用連接的超時(shí)(以秒為單位)辛友。

spring.jta.atomikos.datasource.default-isolation-level =#池提供的連接的默認(rèn)隔離級(jí)別薄扁。

spring.jta.atomikos.datasource.login-timeout =#建立數(shù)據(jù)庫(kù)連接的超時(shí)(以秒為單位)。

spring.jta.atomikos.datasource.maintenance-interval = 60 #池維護(hù)線程運(yùn)行之間的時(shí)間(以秒為單位)废累。

spring.jta.atomikos.datasource.max-idle-time = 60 #從池中清除連接的時(shí)間(以秒為單位)邓梅。

spring.jta.atomikos.datasource.max-lifetime = 0 #連接在被銷毀之前可以被合并的時(shí)間(以秒為單位)。0表示無(wú)限制邑滨。

spring.jta.atomikos.datasource.max-pool-size = 1 #池的最大大小日缨。

spring.jta.atomikos.datasource.min-pool-size = 1 #池的最小大小。

spring.jta.atomikos.datasource.reap-timeout = 0 #借用連接的收集超時(shí)(以秒為單位)掖看。0表示無(wú)限制匣距。

spring.jta.atomikos.datasource.test-query =#用于在返回連接之前驗(yàn)證連接的SQL查詢或語(yǔ)句。

spring.jta.atomikos.datasource.unique-resource-name = dataSource #用于在恢復(fù)期間標(biāo)識(shí)資源的唯一名稱哎壳。

#BITRONIX

spring.jta.bitronix.connectionfactory.acquire-increment = 1 #增加池時(shí)創(chuàng)建的連接數(shù)毅待。

spring.jta.bitronix.connectionfactory.acquisition-interval = 1 #在獲取無(wú)效連接后再次嘗試獲取連接之前等待的時(shí)間(以秒為單位)。

spring.jta.bitronix.connectionfactory.acquisition-timeout = 30 #從池中獲取連接的超時(shí)(以秒為單位)归榕。

spring.jta.bitronix.connectionfactory.allow-local-transactions = true #事務(wù)管理器是否應(yīng)該允許混合XA和非XA事務(wù)尸红。

spring.jta.bitronix.connectionfactory.apply-transaction-timeout = false #是否應(yīng)該在登記時(shí)在XAResource上設(shè)置事務(wù)超時(shí)。

spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled = true #資源是否應(yīng)自動(dòng)注冊(cè)和刪除。

spring.jta.bitronix.connectionfactory.cache-producers-consumers = true #是否生產(chǎn)和消費(fèi)者應(yīng)該被緩存驶乾。

spring.jta.bitronix.connectionfactory.defer-connection-release = true #提供程序是否可以在同一連接上運(yùn)行多個(gè)事務(wù)邑飒,并支持事務(wù)交叉循签。

spring.jta.bitronix.connectionfactory.ignore-recovery-failures = false #是否應(yīng)該忽略恢復(fù)失敗级乐。

spring.jta.bitronix.connectionfactory.max-idle-time = 60 #從池中清除連接的時(shí)間(以秒為單位)。

spring.jta.bitronix.connectionfactory.max-pool-size = 10 #池的最大大小县匠。0表示無(wú)限制风科。

spring.jta.bitronix.connectionfactory.min-pool-size = 0 #池的最小大小。

spring.jta.bitronix.connectionfactory.password =#用于連接到JMS提供程序的密碼乞旦。

spring.jta.bitronix.connectionfactory.share-transaction-connections = false #是否可以在事務(wù)上下文中共享處于ACCESSIBLE狀態(tài)的連接贼穆。

spring.jta.bitronix.connectionfactory.test-connections = true #從池中獲取連接時(shí)是否應(yīng)該進(jìn)行測(cè)試。

spring.jta.bitronix.connectionfactory.two-pc-ordering-position = 1 #此資源在兩階段提交期間應(yīng)采用的位置(始終為Integer.MIN_VALUE兰粉,始終為Integer.MAX_VALUE)故痊。

spring.jta.bitronix.connectionfactory.unique-name = jmsConnectionFactory #用于在恢復(fù)期間標(biāo)識(shí)資源的唯一名稱。

spring.jta.bitronix.connectionfactory.use-tm-join = true 啟動(dòng)XAResources時(shí)是否應(yīng)使用TMJOIN玖姑。

spring.jta.bitronix.connectionfactory.user =#用于連接到JMS提供程序的用戶愕秫。

spring.jta.bitronix.datasource.acquire-increment = 1 #增加池時(shí)創(chuàng)建的連接數(shù)。

spring.jta.bitronix.datasource.acquisition-interval = 1 #在獲取無(wú)效連接后再次嘗試獲取連接之前等待的時(shí)間(以秒為單位)焰络。

spring.jta.bitronix.datasource.acquisition-timeout = 30 #從池中獲取連接的超時(shí)(以秒為單位)戴甩。

spring.jta.bitronix.datasource.allow-local-transactions = true #事務(wù)管理器是否應(yīng)允許混合XA和非XA事務(wù)。

spring.jta.bitronix.datasource.apply-transaction-timeout = false #是否應(yīng)該在登記時(shí)在XAResource上設(shè)置事務(wù)超時(shí)闪彼。

spring.jta.bitronix.datasource.automatic-enlisting-enabled = true #資源是否應(yīng)自動(dòng)注冊(cè)和刪除甜孤。

spring.jta.bitronix.datasource.cursor-holdability =#連接的默認(rèn)游標(biāo)保留能力。

spring.jta.bitronix.datasource.defer-connection-release = true #數(shù)據(jù)庫(kù)是否可以在同一連接上運(yùn)行多個(gè)事務(wù)畏腕,并支持事務(wù)交叉缴川。

spring.jta.bitronix.datasource.enable-jdbc4-connection-test =#從池中獲取連接時(shí)是否調(diào)用Connection.isValid()。

spring.jta.bitronix.datasource.ignore-recovery-failures = false #是否應(yīng)該忽略恢復(fù)失敗描馅。

spring.jta.bitronix.datasource.isolation-level =#連接的默認(rèn)隔離級(jí)別把夸。

spring.jta.bitronix.datasource.local-auto-commit =#本地事務(wù)的默認(rèn)自動(dòng)提交模式。

spring.jta.bitronix.datasource.login-timeout =#建立數(shù)據(jù)庫(kù)連接的超時(shí)(以秒為單位)流昏。

spring.jta.bitronix.datasource.max-idle-time = 60 #從池中清除連接的時(shí)間(以秒為單位)扎即。

spring.jta.bitronix.datasource.max-pool-size = 10 #池的最大大小。0表示無(wú)限制况凉。

spring.jta.bitronix.datasource.min-pool-size = 0 #池的最小大小谚鄙。

spring.jta.bitronix.datasource.prepared-statement-cache-size = 0 #預(yù)準(zhǔn)備語(yǔ)句緩存的目標(biāo)大小。0禁用高速緩存刁绒。

spring.jta.bitronix.datasource.share-transaction-connections = false #是否可以在事務(wù)上下文中共享處于ACCESSIBLE狀態(tài)的連接闷营。

spring.jta.bitronix.datasource.test-query =#用于在返回連接之前驗(yàn)證連接的SQL查詢或語(yǔ)句。

spring.jta.bitronix.datasource.two-pc-ordering-position = 1 #這個(gè)資源在兩階段提交期間應(yīng)該采用的位置(始終為Integer.MIN_VALUE,始終為Integer.MAX_VALUE)傻盟。

spring.jta.bitronix.datasource.unique-name = dataSource #用于在恢復(fù)期間標(biāo)識(shí)資源的唯一名稱速蕊。

spring.jta.bitronix.datasource.use-tm-join = true 啟動(dòng)XAResources時(shí)是否應(yīng)使用TMJOIN。

#EMBEDDED MONGODB(EmbeddedMongoProperties)

spring.mongodb.embedded.features = SYNC_DELAY #要啟用的功能的逗號(hào)分隔列表娘赴。

spring.mongodb.embedded.version = 2 .6.10#使用Mongo的版本规哲。

#REDIS(RedisProperties)

spring.redis.database = 0 #連接工廠使用的數(shù)據(jù)庫(kù)索引。

spring.redis.host = localhost #Redis服務(wù)器主機(jī)诽表。

spring.redis.password =#redis服務(wù)器的登錄密碼唉锌。

spring.redis.pool.max-active = 8 #池在給定時(shí)間可以分配的最大連接數(shù)。使用負(fù)值無(wú)限制竿奏。

spring.redis.pool.max-idle = 8 #池中“空閑”連接的最大數(shù)量袄简。使用負(fù)值來(lái)表示無(wú)限數(shù)量的空閑連接。

spring.redis.pool.max-wait = -1#在池耗盡時(shí)拋出異常之前泛啸,連接分配應(yīng)阻止的最大時(shí)間量(以毫秒為單位)绿语。使用負(fù)值無(wú)限期地阻止。

spring.redis.pool.min-idle = 0 #要在池中維護(hù)的空閑連接的最小數(shù)目的目標(biāo)候址。此設(shè)置僅當(dāng)其為正時(shí)才具有效果吕粹。

spring.redis.port = 6379 #Redis服務(wù)器端口。

spring.redis.sentinel.master =#Redis服務(wù)器的名稱宗雇。

spring.redis.sentinel.nodes =#主機(jī):端口對(duì)的逗號(hào)分隔列表昂芜。

spring.redis.timeout = 0 #連接超時(shí),以毫秒為單位赔蒲。

#----------------------------------------

#集成屬性

#----------------------------------------

#ACTIVEMQ(ActiveMQProperties)

spring.activemq.broker-url =#ActiveMQ代理的URL泌神。默認(rèn)情況下自動(dòng)生成。例如tcp:// localhost:61616

spring.activemq.in-memory = true #指定默認(rèn)代理URL是否應(yīng)該在內(nèi)存中舞虱。如果指定了顯式代理欢际,則忽略。

spring.activemq.password =#代理的登錄密碼矾兜。

spring.activemq.pooled = false #指定是否應(yīng)創(chuàng)建PooledConnectionFactory而不是常規(guī)ConnectionFactory损趋。

spring.activemq.user =#代理的登錄用戶。

#ARTEMIS(ArtemisProperties)

spring.artemis.embedded.cluster-password =#集群密碼椅寺。默認(rèn)情況下浑槽,在啟動(dòng)時(shí)隨機(jī)生成。

spring.artemis.embedded.data-directory =#日志文件目錄返帕。如果持久性已關(guān)閉桐玻,則不需要。

spring.artemis.embedded.enabled = true #如果Artemis服務(wù)器API可用荆萤,則啟用嵌入模式镊靴。

spring.artemis.embedded.persistent = false #啟用持久存儲(chǔ)铣卡。

spring.artemis.embedded.queues =#在啟動(dòng)時(shí)創(chuàng)建的逗號(hào)分隔的隊(duì)列列表。

spring.artemis.embedded.server-id =#服務(wù)器ID偏竟。默認(rèn)情況下煮落,使用自動(dòng)遞增計(jì)數(shù)器。

spring.artemis.embedded.topics =#啟動(dòng)時(shí)創(chuàng)建的逗號(hào)分隔的主題列表踊谋。

spring.artemis.host = localhost #Artemis代理主機(jī)蝉仇。

spring.artemis.mode =#Artemis部署模式,默認(rèn)情況下自動(dòng)檢測(cè)褪子×刻剩可以顯式設(shè)置為“本機(jī)”或“嵌入”。

spring.artemis.port = 61616 #Artemis代理端口嫌褪。

#SPRING BATCH(BatchProperties)

spring.batch.initializer.enabled = true #如果需要,在啟動(dòng)時(shí)創(chuàng)建所需的批處理表胚股。

spring.batch.job.enabled = true #在啟動(dòng)時(shí)在上下文中執(zhí)行所有Spring Batch作業(yè)笼痛。

spring.batch.job.names =#在啟動(dòng)時(shí)執(zhí)行的作業(yè)名的逗號(hào)分隔列表(例如job1,job2)琅拌。默認(rèn)情況下缨伊,在上下文中找到的所有作業(yè)都將被執(zhí)行。

spring.batch.schema = classpath :org / springframework / batch / core / schema - @@ platform @@进宝。sql#用于初始化數(shù)據(jù)庫(kù)模式的SQL文件的路徑刻坊。

spring.batch.table-prefix =#所有批次元數(shù)據(jù)表的表前綴。

#HORNETQ(HornetQProperties)

spring.hornetq.embedded.cluster-password =#群集密碼党晋。默認(rèn)情況下谭胚,在啟動(dòng)時(shí)隨機(jī)生成。

spring.hornetq.embedded.data-directory =#日志文件目錄未玻。如果持久性已關(guān)閉灾而,則不需要。

spring.hornetq.embedded.enabled = true #如果HornetQ服務(wù)器API可用扳剿,則啟用嵌入模式旁趟。

spring.hornetq.embedded.persistent = false #啟用持久存儲(chǔ)。

spring.hornetq.embedded.queues =#在啟動(dòng)時(shí)創(chuàng)建的逗號(hào)分隔的隊(duì)列列表庇绽。

spring.hornetq.embedded.server-id =#服務(wù)器ID锡搜。默認(rèn)情況下,使用自動(dòng)遞增計(jì)數(shù)器瞧掺。

spring.hornetq.embedded.topics =#啟動(dòng)時(shí)創(chuàng)建的逗號(hào)分隔的主題列表耕餐。

spring.hornetq.host = localhost #HornetQ代理主機(jī)。

spring.hornetq.mode =#HornetQ部署模式夸盟,默認(rèn)情況下自動(dòng)檢測(cè)蛾方。可以顯式設(shè)置為“本機(jī)”或“嵌入”。

spring.hornetq.port = 5445 #HornetQ代理端口桩砰。

#JMS(JmsProperties)

spring.jms.jndi-name =#連接工廠JNDI名稱拓春。設(shè)置時(shí),優(yōu)先于其他連接工廠自動(dòng)配置亚隅。

spring.jms.listener.acknowledge-mode =#確認(rèn)容器的模式硼莽。默認(rèn)情況下,偵聽器使用自動(dòng)確認(rèn)進(jìn)行處理煮纵。

spring.jms.listener.auto-startup = true #在啟動(dòng)時(shí)自動(dòng)啟動(dòng)容器懂鸵。

spring.jms.listener.concurrency =#最小并發(fā)消費(fèi)者數(shù)。

spring.jms.listener.max-concurrency =#最大并發(fā)消費(fèi)者數(shù)行疏。

spring.jms.pub-sub-domain = false #指定默認(rèn)目標(biāo)類型是否為主題匆光。

#RABBIT(RabbitProperties)

spring.rabbitmq.addresses =#客戶端應(yīng)連接到的地址的逗號(hào)分隔列表酿联。

spring.rabbitmq.dynamic = true #創(chuàng)建一個(gè)AmqpAdmin bean终息。

spring.rabbitmq.host = localhost #RabbitMQ主機(jī)。

spring.rabbitmq.listener.acknowledge-mode =#確認(rèn)容器的模式贞让。

spring.rabbitmq.listener.auto-startup = true #在啟動(dòng)時(shí)自動(dòng)啟動(dòng)容器周崭。

spring.rabbitmq.listener.concurrency =#最小消費(fèi)者數(shù)。

spring.rabbitmq.listener.max-concurrency =#最大消費(fèi)者數(shù)喳张。

spring.rabbitmq.listener.prefetch =#在單個(gè)請(qǐng)求中處理的消息數(shù)续镇。它應(yīng)該大于或等于事務(wù)大小(如果使用)销部。

spring.rabbitmq.listener.transaction-size =#要在事務(wù)中處理的消息數(shù)摸航。為了獲得最佳結(jié)果,它應(yīng)小于或等于預(yù)取計(jì)數(shù)柴墩。

spring.rabbitmq.password =#登錄以對(duì)代理進(jìn)行身份驗(yàn)證忙厌。

spring.rabbitmq.port = 5672 #RabbitMQ端口。

spring.rabbitmq.requested-heartbeat =#請(qǐng)求的心跳超時(shí)江咳,以秒為單位; 零為零逢净。

spring.rabbitmq.ssl.enabled = false #啟用SSL支持。

spring.rabbitmq.ssl.key-store =#包含SSL證書的密鑰庫(kù)的路徑歼指。

spring.rabbitmq.ssl.key-store-password =#用于訪問(wèn)密鑰庫(kù)的密碼爹土。

spring.rabbitmq.ssl.trust-store =#持有SSL證書的信任存儲(chǔ)。

spring.rabbitmq.ssl.trust-store-password =#用于訪問(wèn)信任存儲(chǔ)庫(kù)的密碼踩身。

spring.rabbitmq.username =#登錄用戶以對(duì)代理進(jìn)行身份驗(yàn)證胀茵。

spring.rabbitmq.virtual-host =#連接到代理時(shí)要使用的虛擬主機(jī)。

#----------------------------------------

#執(zhí)行器特性

#----------------------------------------

#ENDPOINTS(AbstractEndpoint subclasses)

endpoints.enabled = true #啟用端點(diǎn)挟阻。

endpoints.sensitive =#默認(rèn)端點(diǎn)敏感設(shè)置琼娘。

endpoints.actuator.enabled = true #啟用端點(diǎn)峭弟。

endpoints.actuator.path =#端點(diǎn)URL路徑。

endpoints.actuator.sensitive = false #在端點(diǎn)上啟用安全性脱拼。

endpoints.autoconfig.enabled =#啟用端點(diǎn)瞒瘸。

endpoints.autoconfig.id =#端點(diǎn)標(biāo)識(shí)符。

endpoints.autoconfig.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息熄浓。

endpoints.beans.enabled =#啟用端點(diǎn)情臭。

endpoints.beans.id =#端點(diǎn)標(biāo)識(shí)符。

endpoints.beans.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息赌蔑。

endpoints.configprops.enabled =#啟用端點(diǎn)俯在。

endpoints.configprops.id =#終端標(biāo)識(shí)符。

endpoints.configprops.keys-to-sanitize = password 娃惯,secret跷乐,key,石景。* credentials劈猿。*,vcap_services#應(yīng)該進(jìn)行清理的密鑰潮孽。鍵可以是屬性結(jié)尾的簡(jiǎn)單字符串或正則表達(dá)式。

endpoints.configprops.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息筷黔。

endpoints.docs.curies.enabled = false #啟用居里生成往史。

endpoints.docs.enabled = true #啟用執(zhí)行器docs端點(diǎn)。

endpoints.docs.path = / docs#

endpoints.docs.sensitive = false #

endpoints.dump.enabled =#啟用端點(diǎn)佛舱。

endpoints.dump.id =#端點(diǎn)標(biāo)識(shí)符椎例。

endpoints.dump.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息。

endpoints.env.enabled =#啟用端點(diǎn)请祖。

endpoints.env.id =#端點(diǎn)標(biāo)識(shí)符订歪。

endpoints.env.keys-to-sanitize = password ,secret肆捕,key刷晋,。* credentials慎陵。*眼虱,vcap_services#應(yīng)該清理的密鑰。鍵可以是屬性結(jié)尾的簡(jiǎn)單字符串或正則表達(dá)式席纽。

endpoints.env.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息捏悬。

endpoints.flyway.enabled =#啟用端點(diǎn)。

endpoints.flyway.id =#端點(diǎn)標(biāo)識(shí)符润梯。

endpoints.flyway.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息过牙。

endpoints.health.enabled =#啟用端點(diǎn)甥厦。

endpoints.health.id =#端點(diǎn)標(biāo)識(shí)符。

endpoints.health.mapping寇钉。* =#將健康狀態(tài)映射到HttpStatus代碼刀疙。默認(rèn)情況下,注冊(cè)的健康狀態(tài)映射到明智的默認(rèn)值(即UP映射到200)摧莽。

endpoints.health.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息庙洼。

endpoints.health.time-to-live = 1000 #緩存結(jié)果的生存時(shí)間(以毫秒為單位)。

endpoints.info.enabled =#啟用端點(diǎn)镊辕。

endpoints.info.id =#端點(diǎn)標(biāo)識(shí)符油够。

endpoints.info.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息。

endpoints.jolokia.enabled = true #啟用Jolokia端點(diǎn)征懈。

endpoints.jolokia.path = / jolokia#端點(diǎn)URL路徑。

endpoints.jolokia.sensitive = true #在端點(diǎn)上啟用安全性卖哎。

endpoints.liquibase.enabled =#啟用端點(diǎn)焕窝。

endpoints.liquibase.id =#端點(diǎn)標(biāo)識(shí)符。

endpoints.liquibase.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息客给。

endpoints.logfile.enabled = true #啟用端點(diǎn)肢簿。

endpoints.logfile.path = / logfile#端點(diǎn)URL路徑靶剑。

endpoints.logfile.sensitive = true #在端點(diǎn)上啟用安全性。

endpoints.mappings.enabled =#啟用端點(diǎn)译仗。

endpoints.mappings.id =#端點(diǎn)標(biāo)識(shí)符抬虽。

endpoints.mappings.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息。

endpoints.metrics.enabled =#啟用端點(diǎn)纵菌。

endpoints.metrics.filter.enabled = true #啟用metrics servlet篩選器阐污。

endpoints.metrics.id =#端點(diǎn)標(biāo)識(shí)符咱圆。

endpoints.metrics.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息笛辟。

endpoints.shutdown.enabled =#啟用端點(diǎn)功氨。

endpoints.shutdown.id =#端點(diǎn)標(biāo)識(shí)符。

endpoints.shutdown.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息手幢。

endpoints.trace.enabled =#啟用端點(diǎn)捷凄。

endpoints.trace.id =#端點(diǎn)標(biāo)識(shí)符。

endpoints.trace.sensitive =#標(biāo)記端點(diǎn)是否暴露敏感信息围来。

#ENDPOINTS CORS CONFIGURATION(EndpointCorsProperties)

endpoints.cors.allow-credentials =#設(shè)置是否支持憑證跺涤。未設(shè)置時(shí),不支持憑據(jù)监透。

endpoints.cors.allowed-headers =#在請(qǐng)求中允許的逗號(hào)分隔的標(biāo)頭列表桶错。'*'允許所有頭。

endpoints.cors.allowed-methods = GET #允許的逗號(hào)分隔的方法列表胀蛮。'*'允許所有方法院刁。

endpoints.cors.allowed-origins =#允許的逗號(hào)分隔的起始列表。'*'允許所有起源粪狼。未設(shè)置時(shí)退腥,禁用CORS支持。

endpoints.cors.exposed-headers =#要在響應(yīng)中包含的標(biāo)頭的逗號(hào)分隔列表再榄。

endpoints.cors.max-age = 1800 =屏酰客戶端可以緩存來(lái)自預(yù)先請(qǐng)求的響應(yīng)的緩存時(shí)間(秒)。

#JMX ENDPOINT(EndpointMBeanExportProperties)

endpoints.jmx.domain =#JMX域名困鸥。如果設(shè)置颓帝,則使用'spring.jmx.default-domain'的值初始化。

endpoints.jmx.enabled = true #啟用所有端點(diǎn)的JMX導(dǎo)出窝革。

endpoints.jmx.static-names =#附加到表示端點(diǎn)的MBeans的所有ObjectNames的附加靜態(tài)屬性。

endpoints.jmx.unique-names = false #確保在沖突的情況下修改ObjectName吕座。

#JOLOKIA(JolokiaProperties)

jolokia.config虐译。* =#請(qǐng)參閱Jolokia手冊(cè)

#MANAGEMENT HTTP SERVER(ManagementServerProperties)

management.add-application-context-header = true #在每個(gè)響應(yīng)中添加“X-Application-Context”HTTP頭。

management.address =#管理端點(diǎn)應(yīng)綁定的網(wǎng)絡(luò)地址吴趴。

management.context-path =#管理端點(diǎn)上下文路徑漆诽。例如`/ actuator'

management.port =#管理端點(diǎn)HTTP端口。默認(rèn)情況下,使用與應(yīng)用程序相同的端口。

management.security.enabled = true #啟用安全性尿褪。

management.security.role = ADMIN #訪問(wèn)管理端點(diǎn)所需的角色地来。

management.security.sessions = stateless #會(huì)話創(chuàng)建要使用的策略(始終,永遠(yuǎn)密末,if_required,無(wú)狀態(tài))。

#健康指數(shù)(以前的健康楞捂。*)

management.health.db.enabled = true #啟用數(shù)據(jù)庫(kù)運(yùn)行狀況檢查薄坏。

management.health.defaults.enabled = true #啟用默認(rèn)運(yùn)行狀況指示器。

management.health.diskspace.enabled = true #啟用磁盤空間運(yùn)行狀況檢查寨闹。

management.health.diskspace.path =#用于計(jì)算可用磁盤空間的路徑胶坠。

management.health.diskspace.threshold = 0 #應(yīng)該可用的最小磁盤空間(以字節(jié)為單位)。

management.health.elasticsearch.enabled = true #啟用elasticsearch運(yùn)行狀況檢查繁堡。

management.health.elasticsearch.indices =#逗號(hào)分隔的索引名稱沈善。

management.health.elasticsearch.response-timeout = 100 #等待集群響應(yīng)的時(shí)間(以毫秒為單位)。

management.health.jms.enabled = true #啟用JMS運(yùn)行狀況檢查椭蹄。

management.health.mail.enabled = true #啟用郵件運(yùn)行狀況檢查闻牡。

management.health.mongo.enabled = true #啟用MongoDB運(yùn)行狀況檢查。

management.health.rabbit.enabled = true #啟用RabbitMQ運(yùn)行狀況檢查塑娇。

management.health.redis.enabled = true #啟用Redis運(yùn)行狀況檢查澈侠。

management.health.solr.enabled = true #啟用Solr運(yùn)行狀況檢查。

management.health.status.order = DOWN 埋酬,OUT_OF_SERVICE哨啃,UNKNOWN,UP#按嚴(yán)重性順序列出健康狀態(tài)的逗號(hào)分隔列表写妥。

#TRACING((TraceProperties)

management.trace.include = request -headers拳球,response-headers,errors#要包括在跟蹤中的項(xiàng)目珍特。

#遙控器

shell.auth = simple #認(rèn)證類型祝峻。根據(jù)環(huán)境自動(dòng)檢測(cè)。

shell.auth.jaas.domain = my -domain#JAAS域扎筒。

shell.auth.key.path =#認(rèn)證密鑰的路徑莱找。這應(yīng)該指向一個(gè)有效的“.pem”文件。

shell.auth.simple.user.name = user #登錄用戶嗜桌。

shell.auth.simple.user.password =#登錄密碼奥溺。

shell.auth.spring.roles = ADMIN #登錄到CRaSH控制臺(tái)的必需角色的逗號(hào)分隔列表。

shell.command-path-patterns = classpath *:/ commands / **骨宠,classpath *:/ crash / commands / **#用于查找命令的模式浮定。

shell.command-refresh-interval = -1#掃描更改并在必要時(shí)更新命令(以秒為單位)。

shell.config-path-patterns = classpath *:/ crash / *#用于查找配置的模式层亿。

shell.disabled-commands = jpa *桦卒,jdbc *,jndi *#禁用的逗號(hào)分隔的命令列表匿又。

shell.disabled-plugins =#禁用的逗號(hào)分隔的插件列表方灾。某些插件根據(jù)環(huán)境默認(rèn)禁用。

shell.ssh.auth-timeout =#用戶將被提示再次登錄的毫秒數(shù)琳省。

shell.ssh.enabled = true #啟用CRaSH SSH支持迎吵。

shell.ssh.idle-timeout =#未使用的連接關(guān)閉之前的毫秒數(shù)躲撰。

shell.ssh.key-path =#SSH服務(wù)器密鑰的路徑。

shell.ssh.port = 2000 #SSH端口击费。

shell.telnet.enabled = false #啟用CRaSH telnet支持拢蛋。如果TelnetPlugin可用,默認(rèn)情況下啟用蔫巩。

shell.telnet.port = 5000 #Telnet端口谆棱。

#GIT INFO

spring.git.properties =#對(duì)生成的git信息屬性文件的資源引用。

#METRICS EXPORT(MetricExportProperties)

spring.metrics.export.aggregate.key-pattern =#告訴聚合器如何處理源存儲(chǔ)庫(kù)中的鍵的模式圆仔。

spring.metrics.export.aggregate.prefix =#如果處于活動(dòng)狀態(tài)垃瞧,則為全局存儲(chǔ)庫(kù)的前綴。

spring.metrics.export.delay-millis = 5000 #導(dǎo)出ticks之間的延遲(以毫秒為單位)坪郭。度量標(biāo)準(zhǔn)將按照此延遲的計(jì)劃導(dǎo)出到外部源个从。

spring.metrics.export.enabled = true #標(biāo)記以啟用度量導(dǎo)出(假設(shè)MetricWriter可用)。

spring.metrics.export.excludes =#要排除的指標(biāo)名稱的模式列表歪沃。應(yīng)用后包括嗦锐。

spring.metrics.export.includes =#要包括的指標(biāo)名稱的模式列表。

spring.metrics.export.redis.key = keys .spring.metrics#redis存儲(chǔ)庫(kù)導(dǎo)出的鍵(如果為活動(dòng)狀態(tài))沪曙。

spring.metrics.export.redis.prefix = spring .metrics#redis存儲(chǔ)庫(kù)的前綴(如果活動(dòng))奕污。

spring.metrics.export.send-latest =#根據(jù)不導(dǎo)出不變的度量標(biāo)準(zhǔn)值,關(guān)閉任何可用的優(yōu)化液走。

spring.metrics.export.statsd.host =#接收導(dǎo)出指標(biāo)的statsd服務(wù)器的主機(jī)碳默。

spring.metrics.export.statsd.port = 8125 #用于接收導(dǎo)出指標(biāo)的statsd服務(wù)器的端口。

spring.metrics.export.statsd.prefix =#statsd導(dǎo)出的指標(biāo)的前綴缘眶。

spring.metrics.export.triggers嘱根。* =#每個(gè)MetricWriter bean名稱的特定觸發(fā)器屬性。

#----------------------------------------

#DEVTOOLS PROPERTIES

#----------------------------------------

#DEVTOOLS(DevToolsProperties)

spring.devtools.livereload.enabled = true #啟用livereload.com兼容的服務(wù)器巷懈。

spring.devtools.livereload.port = 35729 #服務(wù)器端口儿子。

spring.devtools.restart.additional-exclude =#應(yīng)該排除觸發(fā)完全重新啟動(dòng)的其他模式。

spring.devtools.restart.additional-paths =#監(jiān)視更改的其他路徑砸喻。

spring.devtools.restart.enabled = true #啟用自動(dòng)重新啟動(dòng)。

spring.devtools.restart.exclude = META -INF / maven / **蒋譬,META-INF / resources / **割岛,resources / **,static / **犯助,public / 癣漆,templates / / Test.class剂买, / * Tests.class惠爽,git.properties#應(yīng)該排除觸發(fā)完全重新啟動(dòng)的模式癌蓖。

spring.devtools.restart.poll-interval = 1000 #輪詢類路徑更改之間等待的時(shí)間(以毫秒為單位)。

spring.devtools.restart.quiet-period = 400 #觸發(fā)重新啟動(dòng)之前婚肆,沒(méi)有任何類路徑更改所需的安靜時(shí)間量(以毫秒為單位)租副。

spring.devtools.restart.trigger-file =#更改時(shí)將觸發(fā)重新啟動(dòng)檢查的特定文件的名稱。如果沒(méi)有指定任何classpath文件更改將觸發(fā)重新啟動(dòng)较性。

#REMOTE DEVTOOLS(RemoteDevToolsProperties)

spring.devtools.remote.context-path = /用僧。~~ spring-boot!?#上下文路徑用于處理遠(yuǎn)程連接赞咙。

spring.devtools.remote.debug.enabled = true #啟用遠(yuǎn)程調(diào)試支持责循。

spring.devtools.remote.debug.local-port = 8000 #本地遠(yuǎn)程調(diào)試服務(wù)器端口。

spring.devtools.remote.proxy.host =#用于連接到遠(yuǎn)程應(yīng)用程序的代理的主機(jī)攀操。

spring.devtools.remote.proxy.port =#用于連接到遠(yuǎn)程應(yīng)用程序的代理端口院仿。

spring.devtools.remote.restart.enabled = true #啟用遠(yuǎn)程重新啟動(dòng)。

spring.devtools.remote.secret =#建立連接所需的共享密鑰(啟用遠(yuǎn)程支持所需)速和。

spring.devtools.remote.secret-header-name = X -AUTH-TOKEN#用于傳輸共享密鑰的HTTP頭歹垫。

作者:dadong0505
鏈接:http://www.reibang.com/p/57e1396ccd14
來(lái)源:簡(jiǎn)書
著作權(quán)歸作者所有。商業(yè)轉(zhuǎn)載請(qǐng)聯(lián)系作者獲得授權(quán)健芭,非商業(yè)轉(zhuǎn)載請(qǐng)注明出處县钥。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市慈迈,隨后出現(xiàn)的幾起案子若贮,更是在濱河造成了極大的恐慌,老刑警劉巖痒留,帶你破解...
    沈念sama閱讀 211,123評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件谴麦,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡伸头,警方通過(guò)查閱死者的電腦和手機(jī)匾效,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)恤磷,“玉大人面哼,你說(shuō)我怎么就攤上這事∩ú剑” “怎么了魔策?”我有些...
    開封第一講書人閱讀 156,723評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)河胎。 經(jīng)常有香客問(wèn)我闯袒,道長(zhǎng),這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,357評(píng)論 1 283
  • 正文 為了忘掉前任政敢,我火速辦了婚禮其徙,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘喷户。我一直安慰自己唾那,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,412評(píng)論 5 384
  • 文/花漫 我一把揭開白布摩骨。 她就那樣靜靜地躺著通贞,像睡著了一般。 火紅的嫁衣襯著肌膚如雪恼五。 梳的紋絲不亂的頭發(fā)上昌罩,一...
    開封第一講書人閱讀 49,760評(píng)論 1 289
  • 那天,我揣著相機(jī)與錄音灾馒,去河邊找鬼茎用。 笑死,一個(gè)胖子當(dāng)著我的面吹牛睬罗,可吹牛的內(nèi)容都是我干的轨功。 我是一名探鬼主播,決...
    沈念sama閱讀 38,904評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼容达,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼古涧!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起花盐,我...
    開封第一講書人閱讀 37,672評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤羡滑,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后算芯,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體柒昏,經(jīng)...
    沈念sama閱讀 44,118評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,456評(píng)論 2 325
  • 正文 我和宋清朗相戀三年熙揍,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了职祷。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,599評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡届囚,死狀恐怖有梆,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情意系,我是刑警寧澤淳梦,帶...
    沈念sama閱讀 34,264評(píng)論 4 328
  • 正文 年R本政府宣布,位于F島的核電站昔字,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜作郭,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,857評(píng)論 3 312
  • 文/蒙蒙 一陨囊、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧夹攒,春花似錦蜘醋、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,731評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至编检,卻和暖如春胎食,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背允懂。 一陣腳步聲響...
    開封第一講書人閱讀 31,956評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工厕怜, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蕾总。 一個(gè)月前我還...
    沈念sama閱讀 46,286評(píng)論 2 360
  • 正文 我出身青樓粥航,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親生百。 傳聞我的和親對(duì)象是個(gè)殘疾皇子递雀,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,465評(píng)論 2 348