当前位置:   article > 正文

spring boot 配置文件_endpoints.env.enabled

endpoints.env.enabled

开发的时候查找方便,不用每次去翻spring boot官网,用起来方便。

  1. #================================================= ==================
  2. #共同spring boot特性
  3. #此示例文件作为指导提供。不要在其中复制它
  4. #完整到您自己的应用程序。^^^
  5. #================================================= ==================
  6. #----------------------------------------
  7. #核心属性
  8. #----------------------------------------
  9. #BANNER
  10. banner.charset = UTF-8#横幅文件编码。
  11. banner.location = classpath:banner.txt#横幅文件位置。
  12. #记录
  13. logging.config =#日志配置文件的位置。例如Logback的`classpath:logback.xml`
  14. logging.exception-conversion-word =%wEx#记录异常时使用的转换字。
  15. logging.file =#记录文件名称。例如`myapp.log`
  16. logging.level。* =#日志级别严重性映射。例如`logging.level.org.springframework = DEBUG`
  17. logging.path =#日志文件的位置。例如`/ var / log`
  18. logging.pattern.console =#输出到控制台的Appender模式。仅支持默认的登录设置。
  19. logging.pattern.file =#输出到文件的Appender模式。仅支持默认的登录设置。
  20. logging.pattern.level =#日志级别的Appender模式(默认%5p)。仅支持默认的登录设置。
  21. logging.register-shutdown-hook = false#为日志记录系统初始化时注册一个关闭钩子。
  22. #AOP
  23. spring.aop.auto = true#添加@EnableAspectJAutoProxy
  24. spring.aop.proxy-target-class = false#与基于Java接口的标准代理(false)相比,是否创建基于子类的(CGLIB)代理(true)。
  25. #IDENTITY(ContextIdApplicationContextInitializer)
  26. spring.application.index =#应用程序索引。
  27. spring.application.name =#应用程序名称。
  28. #ADMIN(SpringApplicationAdminJmxAutoConfiguration)
  29. spring.application.admin.enabled = false#为应用程序启用管理功能。
  30. spring.application.admin.jmx-name = org.springframework.boot:type = Admin,name = SpringApplication#JMX应用程序的名称admin MBean。
  31. #自动配置
  32. spring.autoconfigure.exclude =#要排除的自动配置类。
  33. #弹簧芯
  34. spring.beaninfo.ignore = true#跳过对BeanInfo类的搜索。
  35. #SPRING CACHE(CacheProperties)
  36. spring.cache.cache-names =#如果基础高速缓存管理器支持,将创建缓存名称的逗号分隔列表。
  37. spring.cache.ehcache.config =#用于初始化EhCache的配置文件的位置。
  38. spring.cache.guava.spec =#用于创建缓存的规范。检查CacheBuilderSpec以获取有关spec格式的更多详细信息。
  39. spring.cache.hazelcast.config =#用于初始化Hazelcast的配置文件的位置。
  40. spring.cache.infinispan.config =#用于初始化Infinispan的配置文件的位置。
  41. spring.cache.jcache.config =#用于初始化缓存管理器的配置文件的位置。
  42. spring.cache.jcache.provider =#用于检索符合JSR-107的缓存管理器的CachingProvider实现的完全限定名称。只有在类路径中有多个JSR-107实现可用时才需要。
  43. spring.cache.type =#缓存类型,默认根据环境自动检测。
  44. #SPRING CONFIG - 仅使用环境属性(ConfigFileApplicationListener)
  45. spring.config.location =#配置文件位置。
  46. spring.config.name = application#配置文件名。
  47. #HAZELCAST(HazelcastProperties)
  48. spring.hazelcast.config =#用于初始化Hazelcast的配置文件的位置。
  49. #JMX
  50. spring.jmx.default-domain =#JMX域名。
  51. spring.jmx.enabled = true#将管理bean展示给JMX域。
  52. spring.jmx.server = mbeanServer#MBeanServer bean名称。
  53. #电子邮件(MailProperties)
  54. spring.mail.default-encoding = UTF-8#默认MimeMessage编码。
  55. spring.mail.host =#SMTP服务器主机。例如`smtp.example.com`
  56. spring.mail.jndi-name =#会话JNDI名称。设置时,优先于其他邮件设置。
  57. spring.mail.password =#登录SMTP服务器的密码。
  58. spring.mail.port =#SMTP服务器端口。
  59. spring.mail.properties。* =#其他JavaMail会话属性。
  60. spring.mail.protocol = smtp#SMTP服务器使用的协议。
  61. spring.mail.test-connection = false#测试邮件服务器在启动时是否可用。
  62. spring.mail.username =#登录SMTP服务器的用户。
  63. #应用程序设置(SpringApplication)
  64. spring.main.banner-mode = console#用于在应用程序运行时显示横幅的模式。
  65. spring.main.sources =#要包含在ApplicationContext中的源(类名,包名或XML资源位置)。
  66. spring.main.web-environment =#在Web环境中运行应用程序(默认为自动检测)。
  67. #FILE ENCODING(FileEncodingApplicationListener)
  68. spring.mandatory-file-encoding =#应用程序必须使用的预期字符编码。
  69. #国际化(MessageSourceAutoConfiguration)
  70. spring.messages.basename = messages#逗号分隔的基本名称列表,每个都遵循ResourceBundle约定。
  71. spring.messages.cache-seconds = -1#加载资源包文件缓存过期,以秒为单位。设置为-1时,捆绑包将永久缓存。
  72. spring.messages.encoding = UTF-8#消息包编码。
  73. spring.messages.fallback-to-system-locale = true#如果未找到特定语言环境的文件,则设置是否回退到系统区域设置。
  74. #输出
  75. spring.output.ansi.enabled = detect#配置ANSI输出(可以是“detect”,“always”,“never”)。
  76. #PID文件(ApplicationPidFileWriter)
  77. spring.pid.fail-on-write-error =#如果使用ApplicationPidFileWriter,则失败,但不能写入PID文件。
  78. spring.pid.file =#要写入的PID文件的位置(如果使用ApplicationPidFileWriter)。
  79. #个人资料
  80. spring.profiles.active =#逗号分隔的活动配置文件列表。
  81. spring.profiles.include =#无条件激活指定的逗号分隔的配置文件。
  82. #SENDGRID(SendGridAutoConfiguration)
  83. spring.sendgrid.username =#SendGrid帐户用户名
  84. spring.sendgrid.password =#SendGrid帐号密码
  85. spring.sendgrid.proxy.host =#SendGrid代理主机
  86. spring.sendgrid.proxy.port =#SendGrid代理端口
  87. #----------------------------------------
  88. #网络属性
  89. #----------------------------------------
  90. #MULTIPART(多部分属性)
  91. multipart.enabled = true#启用对多部分上传的支持。
  92. multipart.file-size-threshold = 0#文件将写入磁盘之后的阈值。值可以使用后缀“MB”或“KB”来表示兆字节或千字节大小。
  93. multipart.location =#上传文件的中间位置。
  94. multipart.max-file-size = 1Mb#最大文件大小。值可以使用后缀“MB”或“KB”来表示兆字节或千字节大小。
  95. multipart.max-request-size = 10Mb#最大请求大小。值可以使用后缀“MB”或“KB”来表示兆字节或千字节大小。
  96. #嵌入式服务器配置(ServerProperties)
  97. server.address =#服务器应绑定到的网络地址。
  98. server.compression.enabled = false#如果启用了响应压缩。
  99. server.compression.excluded-user-agents =#要从压缩中排除的用户代理列表。
  100. server.compression.mime-types =#应该压缩的MIME类型的逗号分隔列表。例如`text / html,text / css,application / json`
  101. server.compression.min-response-size =#要执行压缩所需的最小响应大小。例如2048
  102. server.context-parameters。* =#Servlet上下文初始化参数。例如`server.context-parameters.a = alpha`
  103. server.context-path =#应用程序的上下文路径。
  104. server.display-name = application#显示应用程序的名称。
  105. server.error.include-stacktrace = never#何时包含“stacktrace”属性。
  106. server.error.path = / error#错误控制器的路径。
  107. server.error.whitelabel.enabled = true#在服务器错误的情况下,启用浏览器中显示的默认错误页面。
  108. server.jsp-servlet.class-name = org.apache.jasper.servlet.JspServlet#JSP servlet的类名称。
  109. server.jsp-servlet.init-parameters。* =#用于配置JSP servlet的初始参数
  110. server.jsp-servlet.registered = true#JSP servlet是否已注册
  111. server.port = 8080#服务器HTTP端口。
  112. server.server-header =#服务器响应头中发送的值(如果为空,则使用servlet容器默认值)
  113. server.servlet-path = /#主调度程序servlet的路径。
  114. server.session.cookie.comment =#会话cookie的注释。
  115. server.session.cookie.domain =#会话cookie的域名。
  116. server.session.cookie.http-only =#会话cookie的“HttpOnly”标志。
  117. server.session.cookie.max-age =#以秒为单位的会话cookie的最大时间。
  118. server.session.cookie.name =#会话cookie名称。
  119. server.session.cookie.path =#会话cookie的路径。
  120. server.session.cookie.secure =#会话cookie的“安全”标志。
  121. server.session.persistent = false#在重新启动之间保留会话数据。
  122. server.session.store-dir =#用于存储会话数据的目录。
  123. server.session.timeout =#以秒为单位的会话超时。
  124. server.session.tracking-modes =#会话跟踪模式(以下一项或多项:“cookie”,“url”,“ssl”)。
  125. server.ssl.ciphers =#支持的SSL密码。
  126. server.ssl.client-auth =#是否需要客户端身份验证(“需要”)或需要(“需要”)。需要信任商店。
  127. server.ssl.enabled =#
  128. server.ssl.key-alias =#
  129. server.ssl.key-password =#
  130. server.ssl.key-store =#
  131. server.ssl.key-store-password =#
  132. server.ssl.key-store-provider =#
  133. server.ssl.key-store-type =#
  134. server.ssl.protocol =#
  135. server.ssl.trust-store =#
  136. server.ssl.trust-store-password =#
  137. server.ssl.trust-store-provider =#
  138. server.ssl.trust-store-type =#
  139. server.tomcat.accesslog.directory = logs#创建日志文件的目录。可以相对于tomcat的基本目录或绝对。
  140. server.tomcat.accesslog.enabled = false#启用访问日志。
  141. server.tomcat.accesslog.pattern = common#访问日志的格式模式。
  142. server.tomcat.accesslog.prefix = access_log#记录文件名前缀。
  143. server.tomcat.accesslog.suffix = .log#日志文件名后缀。
  144. server.tomcat.background-processor-delay = 30#调用backgroundProcess方法之间的延迟(秒)。
  145. server.tomcat.basedir =#Tomcat基本目录。如果未指定,则将使用临时目录。
  146. server.tomcat.internal-proxies= 10 \\ d {1,3} \\ d {1,3} \\ d {1,3} | \\
  147. 192 \\ 168 \\ d {1,3} \\ d {1,3} | \\
  148. 169 \\ 254 \\ d {1,3} \\ d {1,3} | \\
  149. 127 \\ d {1,3} \\ d {1,3} \\ d {1,3} | \\
  150. 172 \\ 1 [6-9] {1} \\ d {1,3} \\ d {1,3} |。。\\
  151. 172 \\ 2 [0-9] {1} \\ d {1,3} \\ d {1,3} |。。\\
  152. 172 \\。3 [0-1] {1} \\。\\ d {1,3} \\。\\ d {1,3}#匹配可信IP地址的正则表达式。
  153. server.tomcat.max-http-header-size = 0#HTTP消息头的最大字节数。
  154. server.tomcat.max-threads = 0#工作线程的最大数量。
  155. server.tomcat.port-header = X-Forwarded-Port#用于覆盖原始端口值的HTTP标头的名称。
  156. server.tomcat.protocol-header =#保存传入协议的头部,通常名为“X-Forwarded-Proto”。
  157. server.tomcat.protocol-header-https-value = https#指示传入请求使用SSL的协议头的值。
  158. server.tomcat.remote-ip-header =#从中提取远程IP的http头的名称。例如`X-FORWARDED-FOR`
  159. server.tomcat.uri-encoding = UTF-8#用于解码URI的字符编码。
  160. server.undertow.accesslog.dir =#取消访问日志目录。
  161. server.undertow.accesslog.enabled = false#启用访问日志。
  162. server.undertow.accesslog.pattern = common#访问日志的格式模式。
  163. server.undertow.buffer-size =#每个缓冲区的大小(以字节为单位)。
  164. server.undertow.buffers-per-region =#每个区域的缓冲区数量。
  165. server.undertow.direct-buffers =#在Java堆外分配缓冲区。
  166. server.undertow.io-threads =#为worker创建的I / O线程数量。
  167. server.undertow.worker-threads =#工作线程数。
  168. server.use-forward-headers =#如果X-Forwarded- *标头应该应用于HttpRequest。
  169. #FREEMARKER(FreeMarkerAutoConfiguration)
  170. spring.freemarker.allow-request-override = false#设置是否允许HttpServletRequest属性覆盖(隐藏)具有相同名称的控制器生成的模型属性。
  171. spring.freemarker.allow-session-override = false#设置是否允许HttpSession属性覆盖(隐藏)具有相同名称的控制器生成的模型属性。
  172. spring.freemarker.cache = false#启用模板缓存。
  173. spring.freemarker.charset = UTF-8#模板编码。
  174. spring.freemarker.check-template-location = true#检查模板位置是否存在。
  175. spring.freemarker.content-type = text / html#Content-Type值。
  176. spring.freemarker.enabled = true#为此技术启用MVC视图分辨率。
  177. spring.freemarker.expose-request-attributes = false#设置在与模板合并之前是否应将所有请求属性添加到模型中。
  178. spring.freemarker.expose-session-attributes = false#设置在与模板合并之前是否应将所有HttpSession属性添加到模型中。
  179. spring.freemarker.expose-spring-macro-helpers = true#设置是否公开名为“springMacroRequestContext”的供Spring的宏库使用的RequestContext。
  180. spring.freemarker.prefer-file-system-access = true#优先选择模板加载的文件系统访问权限。文件系统访问使模板更改的热检测成为可能。
  181. spring.freemarker.prefix =#构建URL时预先查看名称的前缀。
  182. spring.freemarker.request-context-attribute =#所有视图的RequestContext属性的名称。
  183. spring.freemarker.settings.* =#众所周知的FreeMarker键将被传递给FreeMarker的配置。
  184. spring.freemarker.suffix =#在构建URL时被附加到查看名称的后缀。
  185. spring.freemarker.template-loader-path = classpath:/ templates /#逗号分隔的模板路径列表。
  186. spring.freemarker.view-names =#可以解析的视图名称的白名单。
  187. #GROOVY模板(GroovyTemplateAutoConfiguration)
  188. spring.groovy.template.allow-request-override = false#设置是否允许HttpServletRequest属性覆盖(隐藏)具有相同名称的控制器生成的模型属性。
  189. spring.groovy.template.allow-session-override = false#设置是否允许HttpSession属性覆盖(隐藏)具有相同名称的控制器生成的模型属性。
  190. spring.groovy.template.cache =#启用模板缓存。
  191. spring.groovy.template.charset = UTF-8#模板编码。
  192. spring.groovy.template.check-template-location = true#检查模板位置是否存在。
  193. spring.groovy.template.configuration。* =#请参阅GroovyMarkupConfigurer
  194. spring.groovy.template.content-type = test / html#Content-Type值。
  195. spring.groovy.template.enabled = true#为此技术启用MVC视图分辨率。
  196. spring.groovy.template.expose-request-attributes = false#设置在与模板合并之前是否应将所有请求属性添加到模型中。
  197. spring.groovy.template.expose-session-attributes = false#设置在与模板合并之前是否应将所有HttpSession属性添加到模型中。
  198. spring.groovy.template.expose-spring-macro-helpers = true#设置是否公开一个供Spring的宏库使用的名为“springMacroRequestContext”的RequestContext。
  199. spring.groovy.template.prefix =#构建URL时预先查看名称的前缀。
  200. spring.groovy.template.request-context-attribute =#所有视图的RequestContext属性的名称。
  201. spring.groovy.template.resource-loader-path = classpath:/ templates /#模板路径。
  202. spring.groovy.template.suffix = .tpl#在构建URL时被附加到视图名称后缀。
  203. spring.groovy.template.view-names =#可以解析的视图名称的白名单。
  204. #春天HATEOAS(Hateoas属性)
  205. spring.hateoas.use-hal-as-default-json-media-type = true#指定应用程序/ hal + json响应是否应发送到接受application / json的请求。
  206. #HTTP消息转换
  207. spring.http.converters.preferred-json-mapper = jackson#用于HTTP消息转换的首选JSON映射器。设置为“gson”来强制使用Gson,当它和Jackson都在类路径中时。
  208. #HTTP编码(HttpEncodingProperties)
  209. spring.http.encoding.charset = UTF-8#HTTP请求和响应的字符集。如果未明确设置,则添加到“Content-Type”标题中。
  210. spring.http.encoding.enabled = true#启用http编码支持。
  211. spring.http.encoding.force = true#强制编码到HTTP请求和响应上配置的字符集。
  212. #杰克逊(JacksonProperties)
  213. spring.jackson.date-format =#日期格式字符串或完全合格的日期格式类名称。例如`yyyy-MM-dd HH:mm:ss`。
  214. spring.jackson.deserialization。* =#杰克逊开/关功能,影响Java对象反序列化的方式。
  215. spring.jackson.generator。* =#生成器的Jackson开/关功能。
  216. spring.jackson.joda-date-time-format =#乔达日期时间格式字符串。如果未配置,如果使用格式字符串配置,则将使用“日期格式”作为后备。
  217. spring.jackson.locale =#用于格式化的区域设置。
  218. spring.jackson.mapper。* =#杰克逊通用开/关功能。
  219. spring.jackson.parser。* =#解析器的Jackson开/关功能。
  220. spring.jackson.property-naming-strategy =#Jackson的PropertyNamingStrategy上的常量之一。也可以是PropertyNamingStrategy子类的完全限定类名。
  221. spring.jackson.serialization。* =#杰克逊开/关功能,影响Java对象序列化的方式。
  222. spring.jackson.serialization-inclusion =#在序列化过程中控制属性的包含。使用Jackson的JsonInclude.Include枚举中的一个值进行配置。
  223. spring.jackson.time-zone =#格式化日期时使用的时区。例如`America / Los_Angeles`
  224. #泽西(JerseyProperties)
  225. spring.jersey.application-path =#作为应用程序的基本URI的路径。如果指定,则覆盖“@ApplicationPath”的值。
  226. spring.jersey.filter.order = 0#Jersey过滤器链顺序。
  227. spring.jersey.init。* =#初始化参数通过servlet或过滤器传递给Jersey。
  228. spring.jersey.type = servlet#Jersey集成类型。可以是“servlet”或“filter”。
  229. #SPRING MOBILE DEVICE VIEWS(DeviceDelegatingViewResolverAutoConfiguration)
  230. spring.mobile.devicedelegatingviewresolver.enable-fallback = false#启用对回退解析的支持。
  231. spring.mobile.devicedelegatingviewresolver.enabled = false#启用设备视图解析器。
  232. spring.mobile.devicedelegatingviewresolver.mobile-prefix = mobile /#预设为查看移动设备名称的前缀。
  233. spring.mobile.devicedelegatingviewresolver.mobile-suffix =#附加到移动设备视图名称的后缀。
  234. spring.mobile.devicedelegatingviewresolver.normal-prefix =#用于查看普通设备名称的前缀。
  235. spring.mobile.devicedelegatingviewresolver.normal-suffix =#附加到正常设备的视图名称后缀。
  236. spring.mobile.devicedelegatingviewresolver.tablet-prefix = tablet /#预设为查看平板设备名称的前缀。
  237. spring.mobile.devicedelegatingviewresolver.tablet-suffix =#附加到平板设备的查看名称的后缀。
  238. #SPRING MOBILE SITE PREFERENCE(SitePreferenceAutoConfiguration)
  239. spring.mobile.sitepreference.enabled = true#启用SitePreferenceHandler。
  240. #MUSTACHE模板(MustacheAutoConfiguration)
  241. spring.mustache.cache = false#启用模板缓存。
  242. spring.mustache.charset = UTF-8#模板编码。
  243. spring.mustache.check-template-location = true#检查模板位置是否存在。
  244. spring.mustache.content-type = text / html#Content-Type值。
  245. spring.mustache.enabled = true#启用此技术的MVC视图分辨率。
  246. spring.mustache.prefix = classpath:/ templates /#应用于模板名称的前缀。
  247. spring.mustache.suffix = .html#应用于模板名称的后缀。
  248. spring.mustache.view-names =#可以解析的视图名称的白名单。
  249. #SPRING MVC(WebMvcProperties)
  250. spring.mvc.async.request-timeout =#异步请求处理超时之前的时间(以毫秒为单位)。
  251. spring.mvc.date-format =#要使用的日期格式。例如`dd / MM / yyyy`。
  252. spring.mvc.dispatch-trace-request = false#将TRACE请求分派给FrameworkServlet doService方法。
  253. spring.mvc.dispatch-options-request = false#将OPTIONS请求分派给FrameworkServlet的doService方法。
  254. spring.mvc.favicon.enabled = true#启用favicon.ico的解析。
  255. spring.mvc.formcontent.putfilter.enabled = true#启用Spring的HttpPutFormContentFilter。
  256. spring.mvc.ignore-default-model-on-redirect = true#如果在重定向场景中应忽略“默认”模型的内容。
  257. spring.mvc.locale =#使用的语言环境。
  258. spring.mvc.media-types。* =#将文件扩展名映射到媒体类型以进行内容协商。
  259. spring.mvc.message-codes-resolver-format =#消息代码的格式化策略。例如`PREFIX_ERROR_CODE`。
  260. spring.mvc.static-path-pattern = / **#用于静态资源的路径模式。
  261. spring.mvc.throw-exception-if-no-handler-found = false#如果发现没有处理程序处理请求,则应抛出“NoHandlerFoundException”。
  262. spring.mvc.view.prefix =#Spring MVC视图前缀。
  263. spring.mvc.view.suffix =#Spring MVC视图后缀。
  264. #春季资源处理(ResourceProperties)
  265. spring.resources.add-mappings = true#启用默认资源处理。
  266. spring.resources.cache-period =#资源处理程序服务的资源的缓存期,以秒为单位。
  267. spring.resources.chain.cache = true#在资源链中启用缓存。
  268. spring.resources.chain.enabled =#启用Spring资源处理链。默认情况下禁用,除非至少有一种策略已启用。
  269. spring.resources.chain.html-application-cache = false#启用HTML5应用程序缓存清单重写。
  270. spring.resources.chain.strategy.content.enabled = false#启用内容版本策略。
  271. spring.resources.chain.strategy.content.paths = / **#应用于版本策略的逗号分隔的模式列表。
  272. spring.resources.chain.strategy.fixed.enabled = false#启用固定版本策略。
  273. spring.resources.chain.strategy.fixed.paths =#应用于版本策略的逗号分隔模式列表。
  274. spring.resources.chain.strategy.fixed.version =#用于版本策略的版本字符串。
  275. spring.resources.static-locations = classpath:/ META-INF / resources /,classpath:/ resources /,classpath:/ static /,classpath:/ public /#静态资源的位置。
  276. #SPRING SOCIAL(SocialWebAutoConfiguration)
  277. spring.social.auto-connection-views = false#为支持的提供商启用连接状态视图。
  278. #SPRING SOCIAL FACEBOOK(FacebookAutoConfiguration)
  279. spring.social.facebook.app-id =#您的应用程序的Facebook应用程序ID
  280. spring.social.facebook.app-secret =#你的应用程序的Facebook App Secret
  281. #SPRING SOCIAL LINKEDIN(LinkedInAutoConfiguration)
  282. spring.social.linkedin.app-id =#您的应用程序的LinkedIn应用程序ID
  283. spring.social.linkedin.app-secret =#你的应用的LinkedIn App Secret
  284. #SPRING SOCIAL TWITTER(TwitterAutoConfiguration)
  285. spring.social.twitter.app-id =#你的应用程序的Twitter应用程序ID
  286. spring.social.twitter.app-secret =#你的应用程序的Twitter App Secret
  287. #THYMELEAF(ThymeleafAutoConfiguration)
  288. spring.thymeleaf.cache = true#启用模板缓存。
  289. spring.thymeleaf.check-template-location = true#检查模板位置是否存在。
  290. spring.thymeleaf.content-type = text / html#Content-Type值。
  291. spring.thymeleaf.enabled = true#启用MVC Thymeleaf视图分辨率。
  292. spring.thymeleaf.encoding = UTF-8#模板编码。
  293. spring.thymeleaf.excluded-view-names =#应该从分辨率中排除的逗号分隔的视图名称列表。
  294. spring.thymeleaf.mode = HTML5#应用于模板的模板模式。另请参阅StandardTemplateModeHandlers。
  295. spring.thymeleaf.prefix = classpath:/ templates /#构建URL时预先查看名称的前缀。
  296. spring.thymeleaf.suffix = .html#在构建URL时附加到视图名称的后缀。
  297. spring.thymeleaf.template-resolver-order =#链中模板解析器的顺序。
  298. spring.thymeleaf.view-names =#可以解析的视图名称的逗号分隔列表。
  299. #速度模板(VelocityAutoConfiguration)
  300. spring.velocity.allow-request-override = false#设置是否允许HttpServletRequest属性覆盖(隐藏)具有相同名称的控制器生成的模型属性。
  301. spring.velocity.allow-session-override = false#设置是否允许HttpSession属性覆盖(隐藏)具有相同名称的控制器生成的模型属性。
  302. spring.velocity.cache =#启用模板缓存。
  303. spring.velocity.charset = UTF-8#模板编码。
  304. spring.velocity.check-template-location = true#检查模板位置是否存在。
  305. spring.velocity.content-type = text / html#Content-Type值。
  306. spring.velocity.date-tool-attribute =#要在视图的Velocity上下文中公开的DateTool辅助对象的名称。
  307. spring.velocity.enabled = true#为此技术启用MVC视图分辨率。
  308. spring.velocity.expose-request-attributes = false#设置在与模板合并之前是否应将所有请求属性添加到模型中。
  309. spring.velocity.expose-session-attributes = false#设置在与模板合并之前是否应将所有HttpSession属性添加到模型中。
  310. spring.velocity.expose-spring-macro-helpers = true#设置是否公开名为“springMacroRequestContext”的供Spring的宏库使用的RequestContext。
  311. spring.velocity.number-tool-attribute =#要在视图的Velocity上下文中公开的NumberTool帮助程序对象的名称。
  312. spring.velocity.prefer-file-system-access = true#首选文件系统访问模板加载。文件系统访问使模板更改的热检测成为可能。
  313. spring.velocity.prefix =#构建URL时预先查看名称的前缀。
  314. spring.velocity.properties.* =#附加速度属性。
  315. spring.velocity.request-context-attribute =#所有视图的RequestContext属性的名称。
  316. spring.velocity.resource-loader-path = classpath:/ templates /#模板路径。
  317. spring.velocity.suffix = .vm#构建URL时附加到视图名称的后缀。
  318. spring.velocity.toolbox-config-location =#Velocity Toolbox配置位置。例如`/ WEB-INF / toolbox.xml`
  319. spring.velocity.view-names =#可以解析的视图名称的白名单。
  320. #----------------------------------------
  321. #安全特性
  322. #----------------------------------------
  323. #安全(SecurityProperties)
  324. security.basic.authorize-mode = role#安全授权模式。
  325. security.basic.enabled = true#启用基本认证。
  326. security.basic.path = / **#以逗号分隔的安全路径列表。
  327. security.basic.realm = Spring#HTTP基本领域名称。
  328. security.enable-csrf = false#启用跨站点请求伪造支持。
  329. security.filter-order = 0#安全过滤器链顺序。
  330. security.filter-dispatcher-types = ASYNC,FORWARD,INCLUDE,REQUEST#安全性筛选器链调度程序类型。
  331. security.headers.cache = true#启用缓存控制HTTP标头。
  332. security.headers.content-type = true#启用“X-Content-Type-Options”标题。
  333. security.headers.frame = true#启用“X-Frame-Options”标题。
  334. security.headers.hsts =#HTTP严格传输安全(HSTS)模式(无,域,全部)。
  335. security.headers.xss = true#启用跨站点脚本(XSS)保护。
  336. security.ignored =#从逗号分隔的默认安全路径中排除的路径列表。
  337. security.require-ssl = false#为所有请求启用安全通道。
  338. security.sessions =无状态#会话创建策略(永远,从不,if_required,无状态)。
  339. security.user.name = user#默认用户名。
  340. security.user.password =#默认用户名的密码。默认情况下会在启动时记录随机密码。
  341. security.user.role = USER#授予默认用户名的角色。
  342. #SECURITY OAUTH2客户端(OAuth2ClientProperties
  343. security.oauth2.client.client-id =#OAuth2客户端ID。
  344. security.oauth2.client.client-secret =#OAuth2客户端密钥。随机秘密是默认生成的
  345. #SECURITY OAUTH2 RESOURCES(ResourceServerProperties
  346. security.oauth2.resource.id =#资源的标识符。
  347. security.oauth2.resource.jwt.key-uri =#JWT令牌的URI。如果该值不可用并且密钥是公开的,可以设置。
  348. security.oauth2.resource.jwt.key-value =#JWT令牌的验证密钥。可以是对称密钥或PEM编码的RSA公钥。
  349. security.oauth2.resource.prefer-token-info = true#使用token info,可以设置为false来使用用户信息。
  350. security.oauth2.resource.service-id =资源#
  351. security.oauth2.resource.token-info-uri =#令牌解码端点的URI。
  352. security.oauth2.resource.token-type =#使用userInfoUri时要发送的令牌类型。
  353. security.oauth2.resource.user-info-uri =#用户端点的URI。
  354. #SECURITY OAUTH2 SSO(OAuth2SsoProperties
  355. security.oauth2.sso.filter-order =#如果不提供显式的WebSecurityConfigurerAdapter
  356. security.oauth2.sso.login-path = / login#登录页面的路径,即触发重定向到OAuth2授权服务器的路径
  357. #----------------------------------------
  358. #数据属性
  359. #----------------------------------------
  360. #FLYWAY(FlywayProperties)
  361. flyway.baseline-description =#
  362. flyway.baseline-version = 1#版本开始迁移
  363. flyway.baseline-on-migrate =#
  364. flyway.check-location = false#检查是否存在迁移脚本位置。
  365. flyway.clean-on-validation-error =#
  366. flyway.enabled = true#启用飞路。
  367. flyway.encoding =#
  368. flyway.ignore-failed-future-migration =#
  369. flyway.init-sqls =#SQL语句在获取它之后立即执行以初始化连接。
  370. flyway.locations = classpath:db / migration#迁移脚本的位置
  371. flyway.out-of-order =#
  372. flyway.password =#如果您希望Flyway创建自己的DataSource,则使用JDBC密码
  373. flyway.placeholder-prefix =#
  374. flyway.placeholder-replacement =#
  375. flyway.placeholder-suffix =#
  376. flyway.placeholders。* =#
  377. flyway.schemas =#模式更新
  378. flyway.sql-migration-prefix = V#
  379. flyway.sql-migration-separator =#
  380. flyway.sql-migration-suffix = .sql#
  381. flyway.table =#
  382. flyway.url =#要迁移的数据库的JDBC URL。如果未设置,则使用主要配置的数据源。
  383. flyway.user =#登录要迁移的数据库的用户。
  384. flyway.validate-on-migrate =#
  385. #LIQUIBASE(LiquibaseProperties)
  386. liquibase.change-log = classpath:/db/changelog/db.changelog-master.yaml#更改日志配置路径。
  387. liquibase.check-change-log-location = true#检查更改日志位置是否存在。
  388. liquibase.contexts =#使用运行时上下文的逗号分隔列表。
  389. liquibase.default-schema =#默认数据库模式。
  390. liquibase.drop-first = false#首先删除数据库模式。
  391. liquibase.enabled = true#启用liquibase支持。
  392. liquibase.labels =#使用运行时标签的逗号分隔列表。
  393. liquibase.parameters。* =#更改日志参数。
  394. liquibase.password =#登录要迁移的数据库的密码。
  395. liquibase.url =#要迁移的数据库的JDBC URL。如果未设置,则使用主要配置的数据源。
  396. liquibase.user =#登录要迁移的数据库的用户。
  397. #DAO(PersistenceExceptionTranslationAutoConfiguration)
  398. spring.dao.exceptiontranslation.enabled = true#启用PersistenceExceptionTranslationPostProcessor。
  399. #CASSANDRA(CassandraProperties)
  400. spring.data.cassandra.cluster-name =#Cassandra集群的名称。
  401. spring.data.cassandra.compression =#Cassandra二进制协议支持的压缩。
  402. spring.data.cassandra.connect-timeout-millis =#套接字选项:连接超时。
  403. spring.data.cassandra.consistency-level =#查询一致性级别。
  404. spring.data.cassandra.contact-points = localhost#群集节点地址的逗号分隔列表。
  405. spring.data.cassandra.fetch-size =#查询默认获取大小。
  406. spring.data.cassandra.keyspace-name =#使用的Keyspace名称。
  407. spring.data.cassandra.load-balancing-policy =#负载均衡策略的类名称。
  408. spring.data.cassandra.port =#Cassandra服务器的端口。
  409. spring.data.cassandra.password =#登录服务器的密码。
  410. spring.data.cassandra.read-timeout-millis =#套接字选项:读取超时。
  411. spring.data.cassandra.reconnection-policy =#重新连接策略类。
  412. spring.data.cassandra.retry-policy =#重试策略的类名称。
  413. spring.data.cassandra.serial-consistency-level =#查询串行一致性级别。
  414. spring.data.cassandra.ssl = false#启用SSL支持。
  415. spring.data.cassandra.username =#服务器的登录用户。
  416. #ELASTICSEARCH(ElasticsearchProperties)
  417. spring.data.elasticsearch.cluster-name = elasticsearch#Elasticsearch集群名称。
  418. spring.data.elasticsearch.cluster-nodes =#以逗号分隔的集群节点地址列表。如果未指定,则启动客户机节点。
  419. spring.data.elasticsearch.properties。* =#用于配置客户端的其他属性。
  420. spring.data.elasticsearch.repositories.enabled = true#启用Elasticsearch存储库。
  421. #MONGODB(MongoProperties)
  422. spring.data.mongodb.authentication-database =#认证数据库名称。
  423. spring.data.mongodb.database = test#数据库名称。
  424. spring.data.mongodb.field -naming-strategy =#要使用的FieldNamingStrategy的完全限定名称。
  425. spring.data.mongodb.grid-fs-database =#GridFS数据库名称。
  426. spring.data.mongodb.host = localhost#Mongo服务器主机。
  427. spring.data.mongodb.password =#登录mongo服务器的密码。
  428. spring.data.mongodb.port = 27017#Mongo服务器端口。
  429. spring.data.mongodb.repositories.enabled = true#启用Mongo存储库。
  430. spring.data.mongodb.uri = mongodb:// localhost / test#Mongo数据库URI。设置时,主机和端口将被忽略。
  431. spring.data.mongodb.username =#mongo服务器的登录用户。
  432. #数据REST(RepositoryRestProperties)
  433. spring.data.rest.base-path =#Spring Data REST用于公开资源库资源的基本路径。
  434. spring.data.rest.default-page-size =#页面的默认大小。
  435. spring.data.rest.enable-enum-translation =#通过Spring Data REST默认资源包启用枚举值转换。
  436. spring.data.rest.limit-param-name =#URL查询字符串参数的名称,表示一次返回多少个结果。
  437. spring.data.rest.max-page-size =#页面的最大尺寸。
  438. spring.data.rest.page-param-name =#指示要返回哪个页面的URL查询字符串参数的名称。
  439. spring.data.rest.return-body-on-create =#创建实体后返回响应主体。
  440. spring.data.rest.return-body-on-update =#更新实体后返回响应主体。
  441. spring.data.rest.sort-param-name =#指示排序结果的方向的URL查询字符串参数的名称。
  442. #SOLR(SolrProperties)
  443. spring.data.solr.host = http://127.0.0.1:8983 / solr#Solr主机。如果设置了“zk-host”,则忽略。
  444. spring.data.solr.repositories.enabled = true#启用Solr存储库。
  445. spring.data.solr.zk-host =#HOST:PORT形式的#ZooKeeper主机地址。
  446. #DATASOURCE(DataSourceAutoConfiguration&DataSourceProperties)
  447. spring.datasource.continue-on-error = false#如果在初始化数据库时发生错误,请不要停止。
  448. spring.datasource.data =#数据(DML)脚本资源参考。
  449. spring.datasource.driver-class-name =#JDBC驱动程序的完全限定名称。默认情况下基于URL自动检测。
  450. spring.datasource.initialize = true#使用'data.sql'填充数据库。
  451. spring.datasource.jmx-enabled = false#启用JMX支持(如果由底层池提供)。
  452. spring.datasource.jndi-name =#数据源的JNDI位置。设置时会忽略类,网址,用户名和密码。
  453. spring.datasource.max-active =#例如100
  454. spring.datasource.max-idle =#例如8
  455. spring.datasource.max等待=
  456. spring.datasource.min-evictable空闲时间-米利斯=
  457. spring.datasource.min空闲= 8
  458. spring.datasource.name = testdb#数据源的名称。
  459. spring.datasource.password =#登录数据库的密码。
  460. spring.datasource.platform = all#架构资源中使用的平台(架构 - $ {platform} .sql)。
  461. spring.datasource.schema =#架构(DDL)脚本资源引用。
  462. spring.datasource.separator =; #SQL初始化脚本中的语句分隔符。
  463. spring.datasource.sql-script-encoding =#SQL脚本编码。
  464. spring.datasource.test-on-borrow =#例如`false`
  465. spring.datasource.test-on-return =#例如`false`
  466. spring.datasource.test-while-idle =#
  467. spring.datasource.time-between-eviction-runs-millis = 1
  468. spring.datasource.type =#要使用的连接池实现的完全限定名称。默认情况下,它是从类路径中自动检测的。
  469. spring.datasource.url =#数据库的JDBC URL。
  470. spring.datasource.username =
  471. spring.datasource.validation查询=
  472. #H2 Web控制台(H2ConsoleProperties)
  473. spring.h2.console.enabled = false#启用控制台。
  474. spring.h2.console.path = / h2-console#控制台可用的路径。
  475. #JOOQ(JooqAutoConfiguration)
  476. spring.jooq.sql-dialect =#与配置的数据源进行通信时使用的SQLDialect JOOQ。例如`POSTGRES`
  477. #JPA(JpaBaseConfiguration,HibernateJpaAutoConfiguration)
  478. spring.data.jpa.repositories.enabled = true#启用JPA存储库。
  479. spring.jpa.database =#目标数据库进行操作,默认为自动检测。可以使用“databasePlatform”属性进行替代设置。
  480. spring.jpa.database-platform =#要运行的目标数据库的名称,默认为自动检测。也可以使用“数据库”枚举进行设置。
  481. spring.jpa.generate-ddl = false#启动时初始化模式。
  482. spring.jpa.hibernate.ddl-auto =#DDL模式。这实际上是“hibernate.hbm2ddl.auto”属性的快捷方式。使用嵌入式数据库时默认为“创建 - 删除”,否则为“无”。
  483. spring.jpa.hibernate.naming-strategy =#命名策略完全限定名称。
  484. spring.jpa.open-in-view = true#注册OpenEntityManagerInViewInterceptor。将JPA EntityManager绑定到线程,以完成请求的整个处理。
  485. spring.jpa.properties。* =#在JPA提供程序上设置的其他本机属性。
  486. spring.jpa.show-sql = false#启用SQL语句的日志记录。
  487. #JTA(JtaAutoConfiguration)
  488. spring.jta.log-dir =#事务日志目录。
  489. #ATOMIKOS
  490. spring.jta.checkpoint-interval = 500#检查点之间的间隔。
  491. spring.jta.console-file-count = 1#可以创建的调试日志文件的数量。
  492. spring.jta.console-file-limit = -1#调试日志文件中最多可以存储多少个字节。
  493. spring.jta.console-file-name = tm.out#调试日志文件名。
  494. spring.jta.console-log-level =#控制台日志级别。
  495. spring.jta.default-jta-timeout = 10000#JTA事务的默认超时。
  496. spring.jta.enable-logging = true#启用磁盘日志记录。
  497. spring.jta.force-shutdown-on-vm-exit = false#指定VM关闭是否应该触发强制关闭事务内核。
  498. spring.jta.log-base-dir =#应该存储日志文件的目录。
  499. spring.jta.log-base-name = tmlog#事务日志文件的基本名称。
  500. spring.jta.max-actives = 50#活动事务的最大数量。
  501. spring.jta.max-timeout = 300000#可以允许事务处理的最大超时时间(以毫秒为单位)。
  502. spring.jta.output-dir =#用于存储调试日志文件的目录。
  503. spring.jta.serial-jta-transactions = true#指定是否应尽可能地加入子交易。
  504. spring.jta.service =#应该启动的事务管理器实现。
  505. spring.jta.threaded-two-phase-commit = true#在参与资源上使用不同(并发)线程进行两阶段提交。
  506. spring.jta.transaction-manager-unique-name =#事务管理器的唯一名称。
  507. spring.jta.atomikos.connectionfactory.borrow-connection-timeout = 30#用于从池中借用连接的超时,以秒为单位。
  508. spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag = true#创建会话时是否忽略事务处理标志。
  509. spring.jta.atomikos.connectionfactory.local-transaction-mode = false#是否需要本地事务。
  510. spring.jta.atomikos.connectionfactory.maintenance-interval = 60#池的维护线程运行之间的时间,以秒为单位。
  511. spring.jta.atomikos.connectionfactory.max-idle-time = 60#从池中清除连接之后的时间,以秒为单位。
  512. spring.jta.atomikos.connectionfactory.max-lifetime = 0#以秒为单位的连接可以在被销毁前汇集的时间。0表示没有限制。
  513. spring.jta.atomikos.connectionfactory.max-pool-size = 1#池的最大尺寸。
  514. spring.jta.atomikos.connectionfactory.min-pool-size = 1#池的最小大小。
  515. spring.jta.atomikos.connectionfactory.reap-timeout = 0#借用连接的收获超时(以秒为单位)。0表示没有限制。
  516. spring.jta.atomikos.connectionfactory.unique-resource-name = jmsConnectionFactory#在恢复期间用于标识资源的唯一名称。
  517. spring.jta.atomikos.datasource.borrow-connection-timeout = 30#用于从池中借用连接的超时,以秒为单位。
  518. spring.jta.atomikos.datasource.default-isolation-level =#池提供的连接的默认隔离级别。
  519. spring.jta.atomikos.datasource.login-timeout =#建立数据库连接的超时时间,以秒为单位。
  520. spring.jta.atomikos.datasource.maintenance-interval = 60#池维护线程运行之间的时间(以秒为单位)。
  521. spring.jta.atomikos.datasource.max-idle-time = 60#从池中清除连接之后的时间,以秒为单位。
  522. spring.jta.atomikos.datasource.max-lifetime = 0#以秒为单位的连接可以在被销毁前汇集的时间。0表示没有限制。
  523. spring.jta.atomikos.datasource.max-pool-size = 1#池的最大尺寸。
  524. spring.jta.atomikos.datasource.min-pool-size = 1#池的最小大小。
  525. spring.jta.atomikos.datasource.reap-timeout = 0#借用连接的收获超时(以秒为单位)。0表示没有限制。
  526. spring.jta.atomikos.datasource.test-query =#返回之前用于验证连接的SQL查询或语句。
  527. spring.jta.atomikos.datasource.unique-resource-name = dataSource#在恢复期间用于标识资源的唯一名称。
  528. #BITRONIX
  529. spring.jta.allow-multiple-lrc = false#允许多个LRC资源登记到同一个事务中。
  530. spring.jta.asynchronous2-pc = false#启用异步执行两阶段提交。
  531. spring.jta.background-recovery-interval-seconds = 60#在后台运行恢复进程的时间间隔(以秒为单位)。
  532. spring.jta.current-node-only-recovery = true#仅恢复当前节点。
  533. spring.jta.debug-zero-resource-transaction = false#记录创建和提交调用堆栈的事务执行没有一个登记资源。
  534. spring.jta.default-transaction-timeout = 60#以秒为单位的默认事务超时。
  535. spring.jta.disable-jmx = false#启用JMX支持。
  536. spring.jta.exception-analyzer =#设置要使用的异常分析器实现的完全限定名称。
  537. spring.jta.filter-log-status = false#启用对日志的过滤,以便仅写入强制日志。
  538. spring.jta.force-batching-enabled = true#设置是否对磁盘部队进行批处理。
  539. spring.jta.forced-write-enabled = true#设置日志是否强制为磁盘。
  540. spring.jta.graceful-shutdown-interval = 60#TM在关闭时间终止事务之前等待事务完成的最大时间量。
  541. spring.jta.jndi-transaction-synchronization-registry-name =#TransactionSynchronizationRegistry的JNDI名称。
  542. spring.jta.jndi-user-transaction-name =#UserTransaction的JNDI名称。
  543. spring.jta.journal = disk#期刊的名称。可以是'磁盘''空'或类名。
  544. spring.jta.log-part1-filename = btm1.tlog#日志的第一个片段的名称。
  545. spring.jta.log-part2-filename = btm2.tlog#日志的第二个片段的名称。
  546. spring.jta.max-log-size-in-mb = 2#日志片段的最大大小(以兆字节为单位)。
  547. spring.jta.resource-configuration-filename =#ResourceLoader配置文件名。
  548. spring.jta.server-id =#必须唯一标识此TM实例的ASCII ID。默认为机器的IP地址。
  549. spring.jta.skip-corrupted-logs = false#跳过损坏的事务日志条目。
  550. spring.jta.warn-about-zero-resource-transaction = true#为未执行单个登记资源的事务记录警告。
  551. spring.jta.bitronix.connectionfactory.acquire-increment = 1#增长池时创建的连接数。
  552. spring.jta.bitronix.connectionfactory.acquisition-interval = 1#在获取无效连接后尝试重新获取连接之前,需要等待的时间(以秒为单位)。
  553. spring.jta.bitronix.connectionfactory.acquisition-timeout = 30#以秒为单位的超时时间,用于从池中获取连接。
  554. spring.jta.bitronix.connectionfactory.allow-local-transactions = true#事务管理器是否应允许混合XA和非XA事务。
  555. spring.jta.bitronix.connectionfactory.apply-transaction-timeout = false#在登记时是否应在XAResource上设置事务超时。
  556. spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled = true#资源是否应该自动登记和除名。
  557. spring.jta.bitronix.connectionfactory.cache-producer-consumers = true#是否生产和消费者应该被缓存。
  558. spring.jta.bitronix.connectionfactory.defer-connection-release = true#提供者是否可以在同一连接上运行多个事务并支持事务交叉。
  559. spring.jta.bitronix.connectionfactory.ignore-recovery-failures = false#是否应该忽略恢复失败。
  560. spring.jta.bitronix.connectionfactory.max-idle-time = 60#连接从池中清理之后的时间,以秒为单位。
  561. spring.jta.bitronix.connectionfactory.max-pool-size = 10#池的最大尺寸。0表示没有限制。
  562. spring.jta.bitronix.connectionfactory.min-pool-size = 0#池的最小大小。
  563. spring.jta.bitronix.connectionfactory.password =#用于连接到JMS提供程序的密码。
  564. spring.jta.bitronix.connectionfactory.share-transaction-connections = false#是否可以在事务上下文中共享ACCESSIBLE状态下的连接。
  565. spring.jta.bitronix.connectionfactory.test-connections = true#是否应该从池中获取连接时测试连接。
  566. spring.jta.bitronix.connectionfactory.two-pc-ordering-position = 1#这个资源在两阶段提交期间应该采取的位置(总是首先是Integer.MIN_VALUE,总是最后是Integer.MAX_VALUE)。
  567. spring.jta.bitronix.connectionfactory.unique-name = jmsConnectionFactory#在恢复期间用于标识资源的唯一名称。
  568. spring.jta.bitronix.connectionfactory.use-tm-join = true在启动XAResources时是否应该使用TMJOIN。
  569. spring.jta.bitronix.connectionfactory.user =#用于连接到JMS提供者的用户。
  570. spring.jta.bitronix.datasource.acquire-increment = 1#增长池时创建的连接数。
  571. spring.jta.bitronix.datasource.acquisition-interval = 1#在获取无效连接后,尝试再次获取连接之前的等待时间,以秒为单位。
  572. spring.jta.bitronix.datasource.acquisition-timeout = 30#以秒为单位超时获取池中的连接。
  573. spring.jta.bitronix.datasource.allow-local-transactions = true#事务管理器是否应允许混合XA和非XA事务。
  574. spring.jta.bitronix.datasource.apply-transaction-timeout = false#在注册时是否应该在XAResource上设置事务超时。
  575. spring.jta.bitronix.datasource.automatic-enlisting-enabled = true#资源是否应该自动登记和除名。
  576. spring.jta.bitronix.datasource.cursor-holdability =#连接的默认光标可保存性。
  577. spring.jta.bitronix.datasource.defer-connection-release = true#数据库是否可以在同一连接上运行多个事务并支持事务交叉。
  578. spring.jta.bitronix.datasource.enable -jdbc4-connection-test =#是否在从池中获取连接时调用Connection.isValid()。
  579. spring.jta.bitronix.datasource.ignore-recovery-failures = false#是否应该忽略恢复失败。
  580. spring.jta.bitronix.datasource.isolation-level =#连接的默认隔离级别。
  581. spring.jta.bitronix.datasource.local-auto-commit =#本地事务的默认自动提交模式。
  582. spring.jta.bitronix.datasource.login-timeout =#建立数据库连接的超时时间,以秒为单位。
  583. spring.jta.bitronix.datasource.max-idle-time = 60#从池中清除连接之后的时间,以秒为单位。
  584. spring.jta.bitronix.datasource.max-pool-size = 10#池的最大尺寸。0表示没有限制。
  585. spring.jta.bitronix.datasource.min-pool-size = 0#池的最小尺寸。
  586. spring.jta.bitronix.datasource.prepared-statement-cache-size = 0#准备好的语句缓存的目标大小。0禁用缓存。
  587. spring.jta.bitronix.datasource.share-transaction-connections = false#是否可以在事务上下文中共享ACCESSIBLE状态下的连接。
  588. spring.jta.bitronix.datasource.test-query =#返回之前用于验证连接的SQL查询或语句。
  589. spring.jta.bitronix.datasource.two-pc-ordering-position = 1#这个资源在两阶段提交期间应该采用的位置(总是首先是Integer.MIN_VALUE,总是最后是Integer.MAX_VALUE)。
  590. spring.jta.bitronix.datasource.unique-name = dataSource#在恢复期间用于标识资源的唯一名称。
  591. spring.jta.bitronix.datasource.use-tm-join = true在启动XAResources时是否应使用TMJOIN。
  592. #EMBEDDED MONGODB(EmbeddedMongoProperties)
  593. spring.mongodb.embedded.features = SYNC_DELAY#要启用的功能的逗号分隔列表。
  594. spring.mongodb.embedded.version = 2.6.10#使用Mongo版本。
  595. #REDIS(RedisProperties)
  596. spring.redis.database = 0#连接工厂使用的数据库索引。
  597. spring.redis.host = localhost#Redis服务器主机。
  598. spring.redis.password =#登录redis服务器的密码。
  599. spring.redis.pool.max-active = 8#池在给定时间可以分配的最大连接数。使用负值无限制。
  600. spring.redis.pool.max-idle = 8#池中“空闲”连接的最大数量。使用负值表示无限数量的空闲连接。
  601. spring.redis.pool.max-wait = -1#连接分配在池耗尽时抛出异常之前应阻塞的最长时间量(以毫秒为单位)。使用负值可以无限期地阻止。
  602. spring.redis.pool.min-idle = 0#目标为保持在池中的最小空闲连接数。如果该设置是肯定的,则该设置仅起作用。
  603. spring.redis.port = 6379#Redis服务器端口。
  604. spring.redis.sentinel.master =#Redis服务器的名称。
  605. spring.redis.sentinel.nodes =#主机:端口对的逗号分隔列表。
  606. spring.redis.timeout = 0#连接超时(以毫秒为单位)。
  607. #----------------------------------------
  608. #整合特性
  609. #----------------------------------------
  610. #ACTIVEMQ(ActiveMQProperties)
  611. spring.activemq.broker-url =#ActiveMQ代理的URL。自动生成默认。例如`tcp:// localhost:61616`
  612. spring.activemq.in-memory = true#指定默认代理URL是否应该在内存中。如果指定了明确的代理,则忽略。
  613. spring.activemq.password =#登录经纪人的密码。
  614. spring.activemq.pooled = false#指定是否应创建PooledConnectionFactory而不是常规的ConnectionFactory。
  615. spring.activemq.user =#代理的登录用户。
  616. #ARTEMIS(ArtemisProperties)
  617. spring.artemis.embedded.cluster-password =#集群密码。默认情况下在启动时随机生成。
  618. spring.artemis.embedded.data-directory =#日记文件目录。如果关闭持久性,则不需要。
  619. spring.artemis.embedded.enabled = true#如果Artemis服务器API可用,则启用嵌入模式。
  620. spring.artemis.embedded.persistent = false#启用持久存储。
  621. spring.artemis.embedded.queues =#在启动时创建的逗号分隔列表。
  622. spring.artemis.embedded.server-id =#服务器ID。默认情况下,使用自动递增的计数器。
  623. spring.artemis.embedded.topics =#启动时要创建的主题的逗号分隔列表。
  624. spring.artemis.host = localhost#阿蒂米斯经纪人主机。
  625. spring.artemis.mode =#Artemis部署模式,默认为自动检测。可以明确设置为“本地”或“嵌入”。
  626. spring.artemis.port = 61616#阿蒂米斯经纪人港口。
  627. #SPRING BATCH(BatchProperties)
  628. spring.batch.initializer.enabled = true#如果需要,在启动时创建所需的批处理表。
  629. spring.batch.job.enabled = true#启动时执行上下文中的所有Spring批处理作业。
  630. spring.batch.job.names =#逗号分隔的启动时要执行的作业名称列表(例如`job1,job2`)。默认情况下,执行在上下文中找到的所有作业。
  631. spring.batch.schema = classpath:org / springframework / batch / core / schema - @@ platform @@。sql#用于初始化数据库模式的SQL文件的路径。
  632. spring.batch.table-prefix =#所有批量元数据表的表前缀。
  633. #HORNETQ(HornetQProperties)
  634. spring.hornetq.embedded.cluster-password =#集群密码。默认情况下在启动时随机生成。
  635. spring.hornetq.embedded.data-directory =#日记文件目录。如果关闭持久性,则不需要。
  636. spring.hornetq.embedded.enabled = true#如果HornetQ服务器API可用,则启用嵌入模式。
  637. spring.hornetq.embedded.persistent = false#启用持久存储。
  638. spring.hornetq.embedded.queues =#在启动时创建的逗号分隔列表。
  639. spring.hornetq.embedded.server-id =#服务器ID。默认情况下,使用自动递增的计数器。
  640. spring.hornetq.embedded.topics =#在启动时创建的以逗号分隔的主题列表。
  641. spring.hornetq.host = localhost#HornetQ代理主机。
  642. spring.hornetq.mode =#HornetQ部署模式,默认为自动检测。可以明确设置为“本地”或“嵌入”。
  643. spring.hornetq.port = 5445#HornetQ经纪人端口。
  644. #JMS(JmsProperties)
  645. spring.jms.jndi-name =#连接工厂的JNDI名称。设置时,优先于其他连接工厂自动配置。
  646. spring.jms.listener.acknowledge-mode =#容器的确认模式。默认情况下,侦听器通过自动确认进行事务处理。
  647. spring.jms.listener.auto-startup = true#启动时自动启动容器。
  648. spring.jms.listener.concurrency =#最小并发消费者数量。
  649. spring.jms.listener.max-concurrency =#最大并发消费者数量。
  650. spring.jms.pub-sub-domain = false#指定默认目标类型是否为主题。
  651. #兔子(兔子属性)
  652. spring.rabbitmq.addresses =#客户端应连接到的地址的逗号分隔列表。
  653. spring.rabbitmq.dynamic = true#创建一个AmqpAdmin bean。
  654. spring.rabbitmq.host = localhost#RabbitMQ主机。
  655. spring.rabbitmq.listener.acknowledge-mode =#容器的确认模式。
  656. spring.rabbitmq.listener.auto-startup = true#启动时自动启动容器。
  657. spring.rabbitmq.listener.concurrency =#消费者的最小数量。
  658. spring.rabbitmq.listener.max-concurrency =#消费者的最大数量。
  659. spring.rabbitmq.listener.prefetch =#在单个请求中要处理的消息数。它应该大于或等于事务大小(如果使用)。
  660. spring.rabbitmq.listener.transaction-size =#事务中要处理的消息数。为了获得最佳结果,它应该小于或等于预取计数。
  661. spring.rabbitmq.password =#登录对经纪人进行身份验证。
  662. spring.rabbitmq.port = 5672#RabbitMQ端口。
  663. spring.rabbitmq.requested-heartbeat =#请求的心跳超时,以秒为单位; 零为零。
  664. spring.rabbitmq.ssl.enabled = false#启用SSL支持。
  665. spring.rabbitmq.ssl.key-store =#保存SSL证书的密钥存储区的路径。
  666. spring.rabbitmq.ssl.key-store-password =#用于访问密钥存储区的密码。
  667. spring.rabbitmq.ssl.trust-store =#持有SSL证书的信任库。
  668. spring.rabbitmq.ssl.trust-store-password =#用于访问信任存储的密码。
  669. spring.rabbitmq.ssl.algorithm =#使用的SSL算法。默认情况下由rabbit客户端库配置。
  670. spring.rabbitmq.username =#登录用户向代理进行身份验证。
  671. spring.rabbitmq.virtual-host =#连接到代理时使用的虚拟主机。
  672. #----------------------------------------
  673. #执行器属性
  674. #----------------------------------------
  675. #ENDPOINTS(AbstractEndpoint子类)
  676. endpoints.enabled = true#启用端点。
  677. endpoints.sensitive =#默认的端点敏感设置。
  678. endpoints.actuator.enabled = true#启用端点。
  679. endpoints.actuator.path =#端点URL路径。
  680. endpoints.actuator.sensitive = false#启用端点的安全性。
  681. endpoints.autoconfig.enabled =#启用端点。
  682. endpoints.autoconfig.id =#端点标识符。
  683. endpoints.autoconfig.sensitive =#标记端点是否暴露敏感信息。
  684. endpoints.beans.enabled =#启用端点。
  685. endpoints.beans.id =#端点标识符。
  686. endpoints.beans.sensitive =#标记端点是否暴露敏感信息。
  687. endpoints.configprops.enabled =#启用端点。
  688. endpoints.configprops.id =#端点标识符。
  689. endpoints.configprops.keys-to-sanitize =密码,密钥,密钥,。*凭证。*,vcap_services#应该清理的密钥。键可以是属性以或正则表达式结束的简单字符串。
  690. endpoints.configprops.sensitive =#标记端点是否公开敏感信息。
  691. endpoints.docs.curies.enabled = false#启用居里代。
  692. endpoints.docs.enabled = true#启用执行器文档终结点。
  693. endpoints.docs.path = / docs#
  694. endpoints.docs.sensitive = false
  695. endpoints.dump.enabled =#启用端点。
  696. endpoints.dump.id =#端点标识符。
  697. endpoints.dump.sensitive =#标记端点是否暴露敏感信息。
  698. endpoints.env.enabled =#启用端点。
  699. endpoints.env.id =#端点标识符。
  700. endpoints.env.keys-to-sanitize =密码,密钥,密钥,。*凭证。*,vcap_services#应该清理的密钥。键可以是属性以或正则表达式结束的简单字符串。
  701. endpoints.env.sensitive =#标记端点是否暴露敏感信息。
  702. endpoints.flyway.enabled =#启用端点。
  703. endpoints.flyway.id =#端点标识符。
  704. endpoints.flyway.sensitive =#标记端点是否暴露敏感信息。
  705. endpoints.health.enabled =#启用端点。
  706. endpoints.health.id =#端点标识符。
  707. endpoints.health.mapping。* =#健康状态到HttpStatus代码的映射。默认情况下,注册的健康状态映射到合理的默认值(即UP地图为200)。
  708. endpoints.health.sensitive =#标记端点是否暴露敏感信息。
  709. endpoints.health.time-to-live = 1000#缓存结果的生存时间(以毫秒为单位)。
  710. endpoints.info.enabled =#启用端点。
  711. endpoints.info.id =#端点标识符。
  712. endpoints.info.sensitive =#标记端点是否暴露敏感信息。
  713. endpoints.jolokia.enabled = true#启用Jolokia端点。
  714. endpoints.jolokia.path = / jolokia#端点URL路径。
  715. endpoints.jolokia.sensitive = true#启用端点的安全性。
  716. endpoints.liquibase.enabled =#启用端点。
  717. endpoints.liquibase.id =#端点标识符。
  718. endpoints.liquibase.sensitive =#标记端点是否暴露敏感信息。
  719. endpoints.logfile.enabled = true#启用端点。
  720. endpoints.logfile.path = / logfile#端点URL路径。
  721. endpoints.logfile.sensitive = true#在端点上启用安全性。
  722. endpoints.mappings.enabled =#启用端点。
  723. endpoints.mappings.id =#端点标识符。
  724. endpoints.mappings.sensitive =#标记端点是否暴露敏感信息。
  725. endpoints.metrics.enabled =#启用端点。
  726. endpoints.metrics.filter.enabled = true#启用度量servlet过滤器。
  727. endpoints.metrics.id =#端点标识符。
  728. endpoints.metrics.sensitive =#标记端点是否暴露敏感信息。
  729. endpoints.shutdown.enabled =#启用端点。
  730. endpoints.shutdown.id =#端点标识符。
  731. endpoints.shutdown.sensitive =#标记端点是否暴露敏感信息。
  732. endpoints.trace.enabled =#启用端点。
  733. endpoints.trace.id =#端点标识符。
  734. endpoints.trace.sensitive =#标记端点是否暴露敏感信息。
  735. #ENDPOINTS CORS配置(EndpointCorsProperties)
  736. endpoints.cors.allow-credentials =#设置是否支持凭证。未设置时,不支持凭证。
  737. endpoints.cors.allowed-headers =#在请求中允许使用逗号分隔的标题列表。'*'允许所有标题。
  738. endpoints.cors.allowed-methods = GET#逗号分隔的允许的方法列表。'*'允许所有方法。
  739. endpoints.cors.allowed-origins =#逗号分隔的起源列表允许。'*'允许所有的来源。未设置时,CORS支持被禁用。
  740. endpoints.cors.exposed-headers =#逗号分隔的标题列表包含在响应中。
  741. endpoints.cors.max-age = 1800#以秒为单位,客户端可以缓存飞行前请求的响应。
  742. #JMX ENDPOINT(EndpointMBeanExportProperties)
  743. endpoints.jmx.domain =#JMX域名。如果设置,则使用'spring.jmx.default-domain'的值进行初始化。
  744. endpoints.jmx.enabled = true#启用所有端点的JMX导出。
  745. endpoints.jmx.static-names =#附加到所有表示端点的MBean的ObjectName的静态属性。
  746. endpoints.jmx.unique-names = false#确保ObjectNames在发生冲突时被修改。
  747. #JOLOKIA(JolokiaProperties)
  748. jolokia.config。* =#请参阅Jolokia手册
  749. #管理HTTP服务器(ManagementServerProperties)
  750. management.add-application-context-header = true#在每个响应中添加“X-Application-Context”HTTP标头。
  751. management.address =#管理端点应该绑定的网络地址。
  752. management.context-path =#管理端点上下文路径。例如`/执行器'
  753. management.port =#管理端点HTTP端口。默认使用与应用程序相同的端口。
  754. management.security.enabled = true#启用安全性。
  755. management.security.role = ADMIN#访问管理端点所需的角色。
  756. management.security.sessions =无状态#会话创建策略使用(永远,从不,if_required,无状态)。
  757. #健康指标(以前为健康*)
  758. management.health.db.enabled = true#启用数据库运行状况检查。
  759. management.health.defaults.enabled = true#启用默认运行状况指示器。
  760. management.health.diskspace.enabled = true#启用磁盘空间运行状况检查。
  761. management.health.diskspace.path =#用于计算可用磁盘空间的路径。
  762. management.health.diskspace.threshold = 0#应该可用的最小磁盘空间,以字节为单位。
  763. management.health.elasticsearch.enabled = true#启用elasticsearch运行状况检查。
  764. management.health.elasticsearch.indices =#逗号分隔的索引名称。
  765. management.health.elasticsearch.response-timeout = 100#等待群集响应的时间(以毫秒为单位)。
  766. management.health.jms.enabled = true#启用JMS运行状况检查。
  767. management.health.mail.enabled = true#启用邮件运行状况检查。
  768. management.health.mongo.enabled = true#启用MongoDB运行状况检查。
  769. management.health.rabbit.enabled = true#启用RabbitMQ运行状况检查。
  770. management.health.redis.enabled = true#启用Redis运行状况检查。
  771. management.health.solr.enabled = true#启用Solr运行状况检查。
  772. management.health.status.order = DOWN,OUT_OF_SERVICE,UNKNOWN,UP#以严重性顺序的逗号分隔的健康状态列表。
  773. #TRACING((TraceProperties)
  774. management.trace.include =请求标题,响应标题,错误#要包含在跟踪中的项目。
  775. #远程外壳
  776. shell.auth = simple#认证类型。根据环境自动检测。
  777. shell.auth.jaas.domain =我的域#JAAS域。
  778. shell.auth.key.path =#认证密钥的路径。这应该指向一个有效的“.pem”文件。
  779. shell.auth.simple.user.name = user#登录用户。
  780. shell.auth.simple.user.password =#登录密码。
  781. shell.auth.spring.roles = ADMIN#用于登录到CRaSH控制台的所需角色的逗号分隔列表。
  782. shell.command-path-patterns = classpath *:/ commands / **,classpath *:/ crash / commands / **#用于查找命令的模式。
  783. shell.command-refresh-interval = -1#如果需要(以秒为单位),扫描更改并更新命令。
  784. shell.config-path-patterns = classpath *:/ crash / *#用于查找配置的模式。
  785. shell.disabled-commands = jpa *,jdbc *,jndi *#禁用命令的逗号分隔列表。
  786. shell.disabled-plugins =#禁用逗号分隔的插件列表。根据环境,某些插件默认处于禁用状态。
  787. shell.ssh.auth-timeout =#用户将被提示再次登录后的毫秒数。
  788. shell.ssh.enabled = true#启用CRaSH SSH支持。
  789. shell.ssh.idle-timeout =#关闭未使用的连接之后的毫秒数。
  790. shell.ssh.key-path =#SSH服务器密钥的路径。
  791. shell.ssh.port = 2000#SSH端口。
  792. shell.telnet.enabled = false#启用CRaSH telnet支持。如果TelnetPlugin可用,则默认启用。
  793. shell.telnet.port = 5000#Telnet端口。
  794. #GIT信息
  795. spring.git.properties =#生成的git信息属性文件的资源引用。
  796. #METRICS EXPORT(MetricExportProperties)
  797. spring.metrics.export.aggregate.key-pattern =#告诉聚合器如何处理源存储库中的密钥的模式。
  798. spring.metrics.export.aggregate.prefix =#全局存储库的前缀(如果处于活动状态)。
  799. spring.metrics.export.delay-millis = 5000#导出刻度之间的延迟(以毫秒为单位)。按照计划将度量标准导出到外部源,并且延迟。
  800. spring.metrics.export.enabled = true#启用度量标准导出的标志(假设MetricWriter可用)。
  801. spring.metrics.export.excludes =#要排除的度量标准名称的模式列表。包含后应用。
  802. spring.metrics.export.includes =#要包含的度量标准名称的模式列表。
  803. spring.metrics.export.redis.key = keys.spring.metrics#Redis存储库导出密钥(如果处于活动状态)。
  804. spring.metrics.export.redis.prefix = spring.metrics#如果处于活动状态,则Redis存储库的前缀。
  805. spring.metrics.export.send-latest =#根据不导出未更改的度量标准值,标记关闭任何可用的优化。
  806. spring.metrics.export.statsd.host =#接收导出指标的statsd服务器的主机。
  807. spring.metrics.export.statsd.port = 8125#接收导出指标的statsd服务器的端口。
  808. spring.metrics.export.statsd.prefix =#statsd导出指标的前缀。
  809. spring.metrics.export.triggers。* =#每个MetricWriter bean名称的特定触发器属性。
  810. #----------------------------------------
  811. #DEVTOOLS属性
  812. #----------------------------------------
  813. #DEVTOOLS(DevToolsProperties)
  814. spring.devtools.livereload.enabled = true#启用livereload.com兼容服务器。
  815. spring.devtools.livereload.port = 35729#服务器端口。
  816. spring.devtools.restart.additional-exclude =#应该从触发完全重新启动时排除的其他模式。
  817. spring.devtools.restart.additional-paths =#观察更改的其他路径。
  818. spring.devtools.restart.enabled = true#启用自动重启。
  819. spring.devtools.restart.exclude = META-INF /行家/ **,META-INF /资源/ **,资源/ **,静态/ **,公共/ **,模板/ **,** / * Test.class,** / * Tests.class,git.properties#应该排除触发完全重新启动的模式。
  820. spring.devtools.restart.poll-interval = 1000#轮询类路径更改之间等待的时间(以毫秒为单位)。
  821. spring.devtools.restart.quiet-period = 400#触发重新启动之前,没有任何类路径更改所需的安静时间(以毫秒为单位)。
  822. spring.devtools.restart.trigger-file =#特定文件的名称,在更改时会触发重新启动检查。如果未指定,则任何类路径文件更改都将触发重新启动。
  823. #REMOTE DEVTOOLS(RemoteDevToolsProperties)
  824. spring.devtools.remote.context-path = /。~~ spring-boot!〜#用于处理远程连接的上下文路径。
  825. spring.devtools.remote.debug.enabled = true#启用远程调试支持。
  826. spring.devtools.remote.debug.local-port = 8000#本地远程调试服务器端口。
  827. spring.devtools.remote.proxy.host =#用于连接远程应用程序的代理主机。
  828. spring.devtools.remote.proxy.port =#用于连接远程应用程序的代理端口。
  829. spring.devtools.remote.restart.enabled = true#启用远程重启。
  830. spring.devtools.remote.secret =#建立连接所需的共享密钥(启用远程支持所必需的)。
  831. spring.devtools.remote.secret-header-name = X-AUTH-TOKEN#用于传输共享密钥的HTTP头。


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/262992
推荐阅读
相关标签
  

闽ICP备14008679号