Spring Boot 配置文件

来源:互联网 发布:域名证书在什么网查询 编辑:程序博客网 时间:2024/05/16 05:45

为方便自己查找配置属性,因为打开Spring Boot官网实在是太慢了。

[plain] view plain copy
  1. # ===================================================================  
  2. # COMMON SPRING BOOT PROPERTIES  
  3. #  
  4. # This sample file is provided as a guideline. Do NOT copy it in its  
  5. # entirety to your own application.               ^^^  
  6. # ===================================================================  
  7.   
  8.   
  9. # ----------------------------------------  
  10. # CORE PROPERTIES  
  11. # ----------------------------------------  
  12.   
  13. # BANNER  
  14. banner.charset=UTF-8 # Banner file encoding.  
  15. banner.location=classpath:banner.txt # Banner file location.  
  16.   
  17. # LOGGING  
  18. logging.config= # Location of the logging configuration file. For instance `classpath:logback.xml` for Logback  
  19. logging.exception-conversion-word=%wEx # Conversion word used when logging exceptions.  
  20. logging.file= # Log file name. For instance `myapp.log`  
  21. logging.level.*= # Log levels severity mapping. For instance `logging.level.org.springframework=DEBUG`  
  22. logging.path= # Location of the log file. For instance `/var/log`  
  23. logging.pattern.console= # Appender pattern for output to the console. Only supported with the default logback setup.  
  24. logging.pattern.file= # Appender pattern for output to the file. Only supported with the default logback setup.  
  25. logging.pattern.level= # Appender pattern for log level (default %5p). Only supported with the default logback setup.  
  26. logging.register-shutdown-hook=false # Register a shutdown hook for the logging system when it is initialized.  
  27.   
  28. # AOP  
  29. spring.aop.auto=true # Add @EnableAspectJAutoProxy.  
  30. spring.aop.proxy-target-class=false # Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false).  
  31.   
  32. # IDENTITY (ContextIdApplicationContextInitializer)  
  33. spring.application.index= # Application index.  
  34. spring.application.name= # Application name.  
  35.   
  36. # ADMIN (SpringApplicationAdminJmxAutoConfiguration)  
  37. spring.application.admin.enabled=false # Enable admin features for the application.  
  38. spring.application.admin.jmx-name=org.springframework.boot:type=Admin,name=SpringApplication # JMX name of the application admin MBean.  
  39.   
  40. # AUTO-CONFIGURATION  
  41. spring.autoconfigure.exclude= # Auto-configuration classes to exclude.  
  42.   
  43. # SPRING CORE  
  44. spring.beaninfo.ignore=true # Skip search of BeanInfo classes.  
  45.   
  46. # SPRING CACHE (CacheProperties)  
  47. spring.cache.cache-names= # Comma-separated list of cache names to create if supported by the underlying cache manager.  
  48. spring.cache.ehcache.config= # The location of the configuration file to use to initialize EhCache.  
  49. spring.cache.guava.spec= # The spec to use to create caches. Check CacheBuilderSpec for more details on the spec format.  
  50. spring.cache.hazelcast.config= # The location of the configuration file to use to initialize Hazelcast.  
  51. spring.cache.infinispan.config= # The location of the configuration file to use to initialize Infinispan.  
  52. spring.cache.jcache.config= # The location of the configuration file to use to initialize the cache manager.  
  53. spring.cache.jcache.provider= # Fully qualified name of the CachingProvider implementation to use to retrieve the JSR-107 compliant cache manager. Only needed if more than one JSR-107 implementation is available on the classpath.  
  54. spring.cache.type= # Cache type, auto-detected according to the environment by default.  
  55.   
  56. # SPRING CONFIG - using environment property only (ConfigFileApplicationListener)  
  57. spring.config.location= # Config file locations.  
  58. spring.config.name=application # Config file name.  
  59.   
  60. # HAZELCAST (HazelcastProperties)  
  61. spring.hazelcast.config= # The location of the configuration file to use to initialize Hazelcast.  
  62.   
  63. # JMX  
  64. spring.jmx.default-domain= # JMX domain name.  
  65. spring.jmx.enabled=true # Expose management beans to the JMX domain.  
  66. spring.jmx.server=mbeanServer # MBeanServer bean name.  
  67.   
  68. # Email (MailProperties)  
  69. spring.mail.default-encoding=UTF-8 # Default MimeMessage encoding.  
  70. spring.mail.host= # SMTP server host. For instance `smtp.example.com`  
  71. spring.mail.jndi-name= # Session JNDI name. When set, takes precedence to others mail settings.  
  72. spring.mail.password= # Login password of the SMTP server.  
  73. spring.mail.port= # SMTP server port.  
  74. spring.mail.properties.*= # Additional JavaMail session properties.  
  75. spring.mail.protocol=smtp # Protocol used by the SMTP server.  
  76. spring.mail.test-connection=false # Test that the mail server is available on startup.  
  77. spring.mail.username= # Login user of the SMTP server.  
  78.   
  79. # APPLICATION SETTINGS (SpringApplication)  
  80. spring.main.banner-mode=console # Mode used to display the banner when the application runs.  
  81. spring.main.sources= # Sources (class name, package name or XML resource location) to include in the ApplicationContext.  
  82. spring.main.web-environment= # Run the application in a web environment (auto-detected by default).  
  83.   
  84. # FILE ENCODING (FileEncodingApplicationListener)  
  85. spring.mandatory-file-encoding= # Expected character encoding the application must use.  
  86.   
  87. # INTERNATIONALIZATION (MessageSourceAutoConfiguration)  
  88. spring.messages.basename=messages # Comma-separated list of basenames, each following the ResourceBundle convention.  
  89. spring.messages.cache-seconds=-1 # Loaded resource bundle files cache expiration, in seconds. When set to -1, bundles are cached forever.  
  90. spring.messages.encoding=UTF-8 # Message bundles encoding.  
  91. spring.messages.fallback-to-system-locale=true # Set whether to fall back to the system Locale if no files for a specific Locale have been found.  
  92.   
  93. # OUTPUT  
  94. spring.output.ansi.enabled=detect # Configure the ANSI output (can be "detect", "always", "never").  
  95.   
  96. # PID FILE (ApplicationPidFileWriter)  
  97. spring.pid.fail-on-write-error= # Fail if ApplicationPidFileWriter is used but it cannot write the PID file.  
  98. spring.pid.file= # Location of the PID file to write (if ApplicationPidFileWriter is used).  
  99.   
  100. # PROFILES  
  101. spring.profiles.active= # Comma-separated list of active profiles.  
  102. spring.profiles.include= # Unconditionally activate the specified comma separated profiles.  
  103.   
  104. # SENDGRID (SendGridAutoConfiguration)  
  105. spring.sendgrid.username= # SendGrid account username  
  106. spring.sendgrid.password= # SendGrid account password  
  107. spring.sendgrid.proxy.host= # SendGrid proxy host  
  108. spring.sendgrid.proxy.port= # SendGrid proxy port  
  109.   
  110.   
  111. # ----------------------------------------  
  112. # WEB PROPERTIES  
  113. # ----------------------------------------  
  114.   
  115. # MULTIPART (MultipartProperties)  
  116. multipart.enabled=true # Enable support of multi-part uploads.  
  117. multipart.file-size-threshold=0 # Threshold after which files will be written to disk. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.  
  118. multipart.location= # Intermediate location of uploaded files.  
  119. multipart.max-file-size=1Mb # Max file size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.  
  120. multipart.max-request-size=10Mb # Max request size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.  
  121.   
  122. # EMBEDDED SERVER CONFIGURATION (ServerProperties)  
  123. server.address= # Network address to which the server should bind to.  
  124. server.compression.enabled=false # If response compression is enabled.  
  125. server.compression.excluded-user-agents= # List of user-agents to exclude from compression.  
  126. server.compression.mime-types= # Comma-separated list of MIME types that should be compressed. For instance `text/html,text/css,application/json`  
  127. server.compression.min-response-size= # Minimum response size that is required for compression to be performed. For instance 2048  
  128. server.context-parameters.*= # Servlet context init parameters. For instance `server.context-parameters.a=alpha`  
  129. server.context-path= # Context path of the application.  
  130. server.display-name=application # Display name of the application.  
  131. server.error.include-stacktrace=never # When to include a "stacktrace" attribute.  
  132. server.error.path=/error # Path of the error controller.  
  133. server.error.whitelabel.enabled=true # Enable the default error page displayed in browsers in case of a server error.  
  134. server.jsp-servlet.class-name=org.apache.jasper.servlet.JspServlet # The class name of the JSP servlet.  
  135. server.jsp-servlet.init-parameters.*= # Init parameters used to configure the JSP servlet  
  136. server.jsp-servlet.registered=true # Whether or not the JSP servlet is registered  
  137. server.port=8080 # Server HTTP port.  
  138. server.server-header= # The value sent in the server response header (uses servlet container default if empty)  
  139. server.servlet-path=/ # Path of the main dispatcher servlet.  
  140. server.session.cookie.comment= # Comment for the session cookie.  
  141. server.session.cookie.domain= # Domain for the session cookie.  
  142. server.session.cookie.http-only= # "HttpOnly" flag for the session cookie.  
  143. server.session.cookie.max-age= # Maximum age of the session cookie in seconds.  
  144. server.session.cookie.name= # Session cookie name.  
  145. server.session.cookie.path= # Path of the session cookie.  
  146. server.session.cookie.secure= # "Secure" flag for the session cookie.  
  147. server.session.persistent=false # Persist session data between restarts.  
  148. server.session.store-dir= # Directory used to store session data.  
  149. server.session.timeout= # Session timeout in seconds.  
  150. server.session.tracking-modes= # Session tracking modes (one or more of the following: "cookie", "url", "ssl").  
  151. server.ssl.ciphers= # Supported SSL ciphers.  
  152. server.ssl.client-auth= # Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store.  
  153. server.ssl.enabled= #  
  154. server.ssl.key-alias= #  
  155. server.ssl.key-password= #  
  156. server.ssl.key-store= #  
  157. server.ssl.key-store-password= #  
  158. server.ssl.key-store-provider= #  
  159. server.ssl.key-store-type= #  
  160. server.ssl.protocol= #  
  161. server.ssl.trust-store= #  
  162. server.ssl.trust-store-password= #  
  163. server.ssl.trust-store-provider= #  
  164. server.ssl.trust-store-type= #  
  165. server.tomcat.accesslog.directory=logs # Directory in which log files are created. Can be relative to the tomcat base dir or absolute.  
  166. server.tomcat.accesslog.enabled=false # Enable access log.  
  167. server.tomcat.accesslog.pattern=common # Format pattern for access logs.  
  168. server.tomcat.accesslog.prefix=access_log # Log file name prefix.  
  169. server.tomcat.accesslog.suffix=.log # Log file name suffix.  
  170. server.tomcat.background-processor-delay=30 # Delay in seconds between the invocation of backgroundProcess methods.  
  171. server.tomcat.basedir= # Tomcat base directory. If not specified a temporary directory will be used.  
  172. server.tomcat.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\  
  173.         192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\  
  174.         169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\  
  175.         127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\  
  176.         172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\  
  177.         172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\  
  178.         172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3} # regular expression matching trusted IP addresses.  
  179. server.tomcat.max-http-header-size=0 # Maximum size in bytes of the HTTP message header.  
  180. server.tomcat.max-threads=0 # Maximum amount of worker threads.  
  181. server.tomcat.port-header=X-Forwarded-Port # Name of the HTTP header used to override the original port value.  
  182. server.tomcat.protocol-header= # Header that holds the incoming protocol, usually named "X-Forwarded-Proto".  
  183. server.tomcat.protocol-header-https-value=https # Value of the protocol header that indicates that the incoming request uses SSL.  
  184. server.tomcat.remote-ip-header= # Name of the http header from which the remote ip is extracted. For instance `X-FORWARDED-FOR`  
  185. server.tomcat.uri-encoding=UTF-8 # Character encoding to use to decode the URI.  
  186. server.undertow.accesslog.dir= # Undertow access log directory.  
  187. server.undertow.accesslog.enabled=false # Enable access log.  
  188. server.undertow.accesslog.pattern=common # Format pattern for access logs.  
  189. server.undertow.buffer-size= # Size of each buffer in bytes.  
  190. server.undertow.buffers-per-region= # Number of buffer per region.  
  191. server.undertow.direct-buffers= # Allocate buffers outside the Java heap.  
  192. server.undertow.io-threads= # Number of I/O threads to create for the worker.  
  193. server.undertow.worker-threads= # Number of worker threads.  
  194. server.use-forward-headers= # If X-Forwarded-* headers should be applied to the HttpRequest.  
  195.   
  196. # FREEMARKER (FreeMarkerAutoConfiguration)  
  197. spring.freemarker.allow-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.  
  198. spring.freemarker.allow-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.  
  199. spring.freemarker.cache=false # Enable template caching.  
  200. spring.freemarker.charset=UTF-8 # Template encoding.  
  201. spring.freemarker.check-template-location=true # Check that the templates location exists.  
  202. spring.freemarker.content-type=text/html # Content-Type value.  
  203. spring.freemarker.enabled=true # Enable MVC view resolution for this technology.  
  204. spring.freemarker.expose-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.  
  205. spring.freemarker.expose-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.  
  206. spring.freemarker.expose-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".  
  207. spring.freemarker.prefer-file-system-access=true # Prefer file system access for template loading. File system access enables hot detection of template changes.  
  208. spring.freemarker.prefix= # Prefix that gets prepended to view names when building a URL.  
  209. spring.freemarker.request-context-attribute= # Name of the RequestContext attribute for all views.  
  210. spring.freemarker.settings.*= # Well-known FreeMarker keys which will be passed to FreeMarker's Configuration.  
  211. spring.freemarker.suffix= # Suffix that gets appended to view names when building a URL.  
  212. spring.freemarker.template-loader-path=classpath:/templates/ # Comma-separated list of template paths.  
  213. spring.freemarker.view-names= # White list of view names that can be resolved.  
  214.   
  215. # GROOVY TEMPLATES (GroovyTemplateAutoConfiguration)  
  216. spring.groovy.template.allow-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.  
  217. spring.groovy.template.allow-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.  
  218. spring.groovy.template.cache= # Enable template caching.  
  219. spring.groovy.template.charset=UTF-8 # Template encoding.  
  220. spring.groovy.template.check-template-location=true # Check that the templates location exists.  
  221. spring.groovy.template.configuration.*= # See GroovyMarkupConfigurer  
  222. spring.groovy.template.content-type=test/html # Content-Type value.  
  223. spring.groovy.template.enabled=true # Enable MVC view resolution for this technology.  
  224. spring.groovy.template.expose-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.  
  225. spring.groovy.template.expose-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.  
  226. spring.groovy.template.expose-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".  
  227. spring.groovy.template.prefix= # Prefix that gets prepended to view names when building a URL.  
  228. spring.groovy.template.request-context-attribute= # Name of the RequestContext attribute for all views.  
  229. spring.groovy.template.resource-loader-path=classpath:/templates/ # Template path.  
  230. spring.groovy.template.suffix=.tpl # Suffix that gets appended to view names when building a URL.  
  231. spring.groovy.template.view-names= # White list of view names that can be resolved.  
  232.   
  233. # SPRING HATEOAS (HateoasProperties)  
  234. spring.hateoas.use-hal-as-default-json-media-type=true # Specify if application/hal+json responses should be sent to requests that accept application/json.  
  235.   
  236. # HTTP message conversion  
  237. spring.http.converters.preferred-json-mapper=jackson # Preferred JSON mapper to use for HTTP message conversion. Set to "gson" to force the use of Gson when both it and Jackson are on the classpath.  
  238.   
  239. # HTTP encoding (HttpEncodingProperties)  
  240. spring.http.encoding.charset=UTF-8 # Charset of HTTP requests and responses. Added to the "Content-Type" header if not set explicitly.  
  241. spring.http.encoding.enabled=true # Enable http encoding support.  
  242. spring.http.encoding.force=true # Force the encoding to the configured charset on HTTP requests and responses.  
  243.   
  244. # JACKSON (JacksonProperties)  
  245. spring.jackson.date-format= # Date format string or a fully-qualified date format class name. For instance `yyyy-MM-dd HH:mm:ss`.  
  246. spring.jackson.deserialization.*= # Jackson on/off features that affect the way Java objects are deserialized.  
  247. spring.jackson.generator.*= # Jackson on/off features for generators.  
  248. spring.jackson.joda-date-time-format= # Joda date time format string. If not configured, "date-format" will be used as a fallback if it is configured with a format string.  
  249. spring.jackson.locale= # Locale used for formatting.  
  250. spring.jackson.mapper.*= # Jackson general purpose on/off features.  
  251. spring.jackson.parser.*= # Jackson on/off features for parsers.  
  252. spring.jackson.property-naming-strategy= # One of the constants on Jackson's PropertyNamingStrategy. Can also be a fully-qualified class name of a PropertyNamingStrategy subclass.  
  253. spring.jackson.serialization.*= # Jackson on/off features that affect the way Java objects are serialized.  
  254. spring.jackson.serialization-inclusion= # Controls the inclusion of properties during serialization. Configured with one of the values in Jackson's JsonInclude.Include enumeration.  
  255. spring.jackson.time-zone= # Time zone used when formatting dates. For instance `America/Los_Angeles`  
  256.   
  257. # JERSEY (JerseyProperties)  
  258. spring.jersey.application-path= # Path that serves as the base URI for the application. Overrides the value of "@ApplicationPath" if specified.  
  259. spring.jersey.filter.order=0 # Jersey filter chain order.  
  260. spring.jersey.init.*= # Init parameters to pass to Jersey via the servlet or filter.  
  261. spring.jersey.type=servlet # Jersey integration type. Can be either "servlet" or "filter".  
  262.   
  263. # SPRING MOBILE DEVICE VIEWS (DeviceDelegatingViewResolverAutoConfiguration)  
  264. spring.mobile.devicedelegatingviewresolver.enable-fallback=false # Enable support for fallback resolution.  
  265. spring.mobile.devicedelegatingviewresolver.enabled=false # Enable device view resolver.  
  266. spring.mobile.devicedelegatingviewresolver.mobile-prefix=mobile/ # Prefix that gets prepended to view names for mobile devices.  
  267. spring.mobile.devicedelegatingviewresolver.mobile-suffix= # Suffix that gets appended to view names for mobile devices.  
  268. spring.mobile.devicedelegatingviewresolver.normal-prefix= # Prefix that gets prepended to view names for normal devices.  
  269. spring.mobile.devicedelegatingviewresolver.normal-suffix= # Suffix that gets appended to view names for normal devices.  
  270. spring.mobile.devicedelegatingviewresolver.tablet-prefix=tablet/ # Prefix that gets prepended to view names for tablet devices.  
  271. spring.mobile.devicedelegatingviewresolver.tablet-suffix= # Suffix that gets appended to view names for tablet devices.  
  272.   
  273. # SPRING MOBILE SITE PREFERENCE (SitePreferenceAutoConfiguration)  
  274. spring.mobile.sitepreference.enabled=true # Enable SitePreferenceHandler.  
  275.   
  276. # MUSTACHE TEMPLATES (MustacheAutoConfiguration)  
  277. spring.mustache.cache=false # Enable template caching.  
  278. spring.mustache.charset=UTF-8 # Template encoding.  
  279. spring.mustache.check-template-location=true # Check that the templates location exists.  
  280. spring.mustache.content-type=text/html # Content-Type value.  
  281. spring.mustache.enabled=true # Enable MVC view resolution for this technology.  
  282. spring.mustache.prefix=classpath:/templates/ # Prefix to apply to template names.  
  283. spring.mustache.suffix=.html # Suffix to apply to template names.  
  284. spring.mustache.view-names= # White list of view names that can be resolved.  
  285.   
  286. # SPRING MVC (WebMvcProperties)  
  287. spring.mvc.async.request-timeout= # Amount of time (in milliseconds) before asynchronous request handling times out.  
  288. spring.mvc.date-format= # Date format to use. For instance `dd/MM/yyyy`.  
  289. spring.mvc.dispatch-trace-request=false # Dispatch TRACE requests to the FrameworkServlet doService method.  
  290. spring.mvc.dispatch-options-request=false # Dispatch OPTIONS requests to the FrameworkServlet doService method.  
  291. spring.mvc.favicon.enabled=true # Enable resolution of favicon.ico.  
  292. spring.mvc.formcontent.putfilter.enabled=true # Enable Spring's HttpPutFormContentFilter.  
  293. spring.mvc.ignore-default-model-on-redirect=true # If the content of the "default" model should be ignored during redirect scenarios.  
  294. spring.mvc.locale= # Locale to use.  
  295. spring.mvc.media-types.*= # Maps file extensions to media types for content negotiation.  
  296. spring.mvc.message-codes-resolver-format= # Formatting strategy for message codes. For instance `PREFIX_ERROR_CODE`.  
  297. spring.mvc.static-path-pattern=/** # Path pattern used for static resources.  
  298. spring.mvc.throw-exception-if-no-handler-found=false # If a "NoHandlerFoundException" should be thrown if no Handler was found to process a request.  
  299. spring.mvc.view.prefix= # Spring MVC view prefix.  
  300. spring.mvc.view.suffix= # Spring MVC view suffix.  
  301.   
  302. # SPRING RESOURCES HANDLING (ResourceProperties)  
  303. spring.resources.add-mappings=true # Enable default resource handling.  
  304. spring.resources.cache-period= # Cache period for the resources served by the resource handler, in seconds.  
  305. spring.resources.chain.cache=true # Enable caching in the Resource chain.  
  306. spring.resources.chain.enabled= # Enable the Spring Resource Handling chain. Disabled by default unless at least one strategy has been enabled.  
  307. spring.resources.chain.html-application-cache=false # Enable HTML5 application cache manifest rewriting.  
  308. spring.resources.chain.strategy.content.enabled=false # Enable the content Version Strategy.  
  309. spring.resources.chain.strategy.content.paths=/** # Comma-separated list of patterns to apply to the Version Strategy.  
  310. spring.resources.chain.strategy.fixed.enabled=false # Enable the fixed Version Strategy.  
  311. spring.resources.chain.strategy.fixed.paths= # Comma-separated list of patterns to apply to the Version Strategy.  
  312. spring.resources.chain.strategy.fixed.version= # Version string to use for the Version Strategy.  
  313. spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/ # Locations of static resources.  
  314.   
  315. # SPRING SOCIAL (SocialWebAutoConfiguration)  
  316. spring.social.auto-connection-views=false # Enable the connection status view for supported providers.  
  317.   
  318. # SPRING SOCIAL FACEBOOK (FacebookAutoConfiguration)  
  319. spring.social.facebook.app-id= # your application's Facebook App ID  
  320. spring.social.facebook.app-secret= # your application's Facebook App Secret  
  321.   
  322. # SPRING SOCIAL LINKEDIN (LinkedInAutoConfiguration)  
  323. spring.social.linkedin.app-id= # your application's LinkedIn App ID  
  324. spring.social.linkedin.app-secret= # your application's LinkedIn App Secret  
  325.   
  326. # SPRING SOCIAL TWITTER (TwitterAutoConfiguration)  
  327. spring.social.twitter.app-id= # your application's Twitter App ID  
  328. spring.social.twitter.app-secret= # your application's Twitter App Secret  
  329.   
  330. # THYMELEAF (ThymeleafAutoConfiguration)  
  331. spring.thymeleaf.cache=true # Enable template caching.  
  332. spring.thymeleaf.check-template-location=true # Check that the templates location exists.  
  333. spring.thymeleaf.content-type=text/html # Content-Type value.  
  334. spring.thymeleaf.enabled=true # Enable MVC Thymeleaf view resolution.  
  335. spring.thymeleaf.encoding=UTF-8 # Template encoding.  
  336. spring.thymeleaf.excluded-view-names= # Comma-separated list of view names that should be excluded from resolution.  
  337. spring.thymeleaf.mode=HTML5 # Template mode to be applied to templates. See also StandardTemplateModeHandlers.  
  338. spring.thymeleaf.prefix=classpath:/templates/ # Prefix that gets prepended to view names when building a URL.  
  339. spring.thymeleaf.suffix=.html # Suffix that gets appended to view names when building a URL.  
  340. spring.thymeleaf.template-resolver-order= # Order of the template resolver in the chain.  
  341. spring.thymeleaf.view-names= # Comma-separated list of view names that can be resolved.  
  342.   
  343. # VELOCITY TEMPLATES (VelocityAutoConfiguration)  
  344. spring.velocity.allow-request-override=false # Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.  
  345. spring.velocity.allow-session-override=false # Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.  
  346. spring.velocity.cache= # Enable template caching.  
  347. spring.velocity.charset=UTF-8 # Template encoding.  
  348. spring.velocity.check-template-location=true # Check that the templates location exists.  
  349. spring.velocity.content-type=text/html # Content-Type value.  
  350. spring.velocity.date-tool-attribute= # Name of the DateTool helper object to expose in the Velocity context of the view.  
  351. spring.velocity.enabled=true # Enable MVC view resolution for this technology.  
  352. spring.velocity.expose-request-attributes=false # Set whether all request attributes should be added to the model prior to merging with the template.  
  353. spring.velocity.expose-session-attributes=false # Set whether all HttpSession attributes should be added to the model prior to merging with the template.  
  354. spring.velocity.expose-spring-macro-helpers=true # Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".  
  355. spring.velocity.number-tool-attribute= # Name of the NumberTool helper object to expose in the Velocity context of the view.  
  356. spring.velocity.prefer-file-system-access=true # Prefer file system access for template loading. File system access enables hot detection of template changes.  
  357. spring.velocity.prefix= # Prefix that gets prepended to view names when building a URL.  
  358. spring.velocity.properties.*= # Additional velocity properties.  
  359. spring.velocity.request-context-attribute= # Name of the RequestContext attribute for all views.  
  360. spring.velocity.resource-loader-path=classpath:/templates/ # Template path.  
  361. spring.velocity.suffix=.vm # Suffix that gets appended to view names when building a URL.  
  362. spring.velocity.toolbox-config-location= # Velocity Toolbox config location. For instance `/WEB-INF/toolbox.xml`  
  363. spring.velocity.view-names= # White list of view names that can be resolved.  
  364.   
  365.   
  366.   
  367. # ----------------------------------------  
  368. # SECURITY PROPERTIES  
  369. # ----------------------------------------  
  370. # SECURITY (SecurityProperties)  
  371. security.basic.authorize-mode=role # Security authorize mode to apply.  
  372. security.basic.enabled=true # Enable basic authentication.  
  373. security.basic.path=/** # Comma-separated list of paths to secure.  
  374. security.basic.realm=Spring # HTTP basic realm name.  
  375. security.enable-csrf=false # Enable Cross Site Request Forgery support.  
  376. security.filter-order=0 # Security filter chain order.  
  377. security.filter-dispatcher-types=ASYNC, FORWARD, INCLUDE, REQUEST # Security filter chain dispatcher types.  
  378. security.headers.cache=true # Enable cache control HTTP headers.  
  379. security.headers.content-type=true # Enable "X-Content-Type-Options" header.  
  380. security.headers.frame=true # Enable "X-Frame-Options" header.  
  381. security.headers.hsts= # HTTP Strict Transport Security (HSTS) mode (none, domain, all).  
  382. security.headers.xss=true # Enable cross site scripting (XSS) protection.  
  383. security.ignored= # Comma-separated list of paths to exclude from the default secured paths.  
  384. security.require-ssl=false # Enable secure channel for all requests.  
  385. security.sessions=stateless # Session creation policy (always, never, if_required, stateless).  
  386. security.user.name=user # Default user name.  
  387. security.user.password= # Password for the default user name. A random password is logged on startup by default.  
  388. security.user.role=USER # Granted roles for the default user name.  
  389.   
  390. # SECURITY OAUTH2 CLIENT (OAuth2ClientProperties  
  391. security.oauth2.client.client-id= # OAuth2 client id.  
  392. security.oauth2.client.client-secret= # OAuth2 client secret. A random secret is generated by default  
  393.   
  394. # SECURITY OAUTH2 RESOURCES (ResourceServerProperties  
  395. security.oauth2.resource.id= # Identifier of the resource.  
  396. security.oauth2.resource.jwt.key-uri= # The URI of the JWT token. Can be set if the value is not available and the key is public.  
  397. security.oauth2.resource.jwt.key-value= # The verification key of the JWT token. Can either be a symmetric secret or PEM-encoded RSA public key.  
  398. security.oauth2.resource.prefer-token-info=true # Use the token info, can be set to false to use the user info.  
  399. security.oauth2.resource.service-id=resource #  
  400. security.oauth2.resource.token-info-uri= # URI of the token decoding endpoint.  
  401. security.oauth2.resource.token-type= # The token type to send when using the userInfoUri.  
  402. security.oauth2.resource.user-info-uri= # URI of the user endpoint.  
  403.   
  404. # SECURITY OAUTH2 SSO (OAuth2SsoProperties  
  405. security.oauth2.sso.filter-order= # Filter order to apply if not providing an explicit WebSecurityConfigurerAdapter  
  406. security.oauth2.sso.login-path=/login # Path to the login page, i.e. the one that triggers the redirect to the OAuth2 Authorization Server  
  407.   
  408.   
  409. # ----------------------------------------  
  410. # DATA PROPERTIES  
  411. # ----------------------------------------  
  412.   
  413. # FLYWAY (FlywayProperties)  
  414. flyway.baseline-description= #  
  415. flyway.baseline-version=1 # version to start migration  
  416. flyway.baseline-on-migrate= #  
  417. flyway.check-location=false # Check that migration scripts location exists.  
  418. flyway.clean-on-validation-error= #  
  419. flyway.enabled=true # Enable flyway.  
  420. flyway.encoding= #  
  421. flyway.ignore-failed-future-migration= #  
  422. flyway.init-sqls= # SQL statements to execute to initialize a connection immediately after obtaining it.  
  423. flyway.locations=classpath:db/migration # locations of migrations scripts  
  424. flyway.out-of-order= #  
  425. flyway.password= # JDBC password if you want Flyway to create its own DataSource  
  426. flyway.placeholder-prefix= #  
  427. flyway.placeholder-replacement= #  
  428. flyway.placeholder-suffix= #  
  429. flyway.placeholders.*= #  
  430. flyway.schemas= # schemas to update  
  431. flyway.sql-migration-prefix=V #  
  432. flyway.sql-migration-separator= #  
  433. flyway.sql-migration-suffix=.sql #  
  434. flyway.table= #  
  435. flyway.url= # JDBC url of the database to migrate. If not set, the primary configured data source is used.  
  436. flyway.user= # Login user of the database to migrate.  
  437. flyway.validate-on-migrate= #  
  438.   
  439. # LIQUIBASE (LiquibaseProperties)  
  440. liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml # Change log configuration path.  
  441. liquibase.check-change-log-location=true # Check the change log location exists.  
  442. liquibase.contexts= # Comma-separated list of runtime contexts to use.  
  443. liquibase.default-schema= # Default database schema.  
  444. liquibase.drop-first=false # Drop the database schema first.  
  445. liquibase.enabled=true # Enable liquibase support.  
  446. liquibase.labels= # Comma-separated list of runtime labels to use.  
  447. liquibase.parameters.*= # Change log parameters.  
  448. liquibase.password= # Login password of the database to migrate.  
  449. liquibase.url= # JDBC url of the database to migrate. If not set, the primary configured data source is used.  
  450. liquibase.user= # Login user of the database to migrate.  
  451.   
  452. # DAO (PersistenceExceptionTranslationAutoConfiguration)  
  453. spring.dao.exceptiontranslation.enabled=true # Enable the PersistenceExceptionTranslationPostProcessor.  
  454.   
  455. # CASSANDRA (CassandraProperties)  
  456. spring.data.cassandra.cluster-name= # Name of the Cassandra cluster.  
  457. spring.data.cassandra.compression= # Compression supported by the Cassandra binary protocol.  
  458. spring.data.cassandra.connect-timeout-millis= # Socket option: connection time out.  
  459. spring.data.cassandra.consistency-level= # Queries consistency level.  
  460. spring.data.cassandra.contact-points=localhost # Comma-separated list of cluster node addresses.  
  461. spring.data.cassandra.fetch-size= # Queries default fetch size.  
  462. spring.data.cassandra.keyspace-name= # Keyspace name to use.  
  463. spring.data.cassandra.load-balancing-policy= # Class name of the load balancing policy.  
  464. spring.data.cassandra.port= # Port of the Cassandra server.  
  465. spring.data.cassandra.password= # Login password of the server.  
  466. spring.data.cassandra.read-timeout-millis= # Socket option: read time out.  
  467. spring.data.cassandra.reconnection-policy= # Reconnection policy class.  
  468. spring.data.cassandra.retry-policy= # Class name of the retry policy.  
  469. spring.data.cassandra.serial-consistency-level= # Queries serial consistency level.  
  470. spring.data.cassandra.ssl=false # Enable SSL support.  
  471. spring.data.cassandra.username= # Login user of the server.  
  472.   
  473. # ELASTICSEARCH (ElasticsearchProperties)  
  474. spring.data.elasticsearch.cluster-name=elasticsearch # Elasticsearch cluster name.  
  475. spring.data.elasticsearch.cluster-nodes= # Comma-separated list of cluster node addresses. If not specified, starts a client node.  
  476. spring.data.elasticsearch.properties.*= # Additional properties used to configure the client.  
  477. spring.data.elasticsearch.repositories.enabled=true # Enable Elasticsearch repositories.  
  478.   
  479. # MONGODB (MongoProperties)  
  480. spring.data.mongodb.authentication-database= # Authentication database name.  
  481. spring.data.mongodb.database=test # Database name.  
  482. spring.data.mongodb.field-naming-strategy= # Fully qualified name of the FieldNamingStrategy to use.  
  483. spring.data.mongodb.grid-fs-database= # GridFS database name.  
  484. spring.data.mongodb.host=localhost # Mongo server host.  
  485. spring.data.mongodb.password= # Login password of the mongo server.  
  486. spring.data.mongodb.port=27017 # Mongo server port.  
  487. spring.data.mongodb.repositories.enabled=true # Enable Mongo repositories.  
  488. spring.data.mongodb.uri=mongodb://localhost/test # Mongo database URI. When set, host and port are ignored.  
  489. spring.data.mongodb.username= # Login user of the mongo server.  
  490.   
  491. # DATA REST (RepositoryRestProperties)  
  492. spring.data.rest.base-path= # Base path to be used by Spring Data REST to expose repository resources.  
  493. spring.data.rest.default-page-size= # Default size of pages.  
  494. spring.data.rest.enable-enum-translation= # Enable enum value translation via the Spring Data REST default resource bundle.  
  495. spring.data.rest.limit-param-name= # Name of the URL query string parameter that indicates how many results to return at once.  
  496. spring.data.rest.max-page-size= # Maximum size of pages.  
  497. spring.data.rest.page-param-name= # Name of the URL query string parameter that indicates what page to return.  
  498. spring.data.rest.return-body-on-create= # Return a response body after creating an entity.  
  499. spring.data.rest.return-body-on-update= # Return a response body after updating an entity.  
  500. spring.data.rest.sort-param-name= # Name of the URL query string parameter that indicates what direction to sort results.  
  501.   
  502. # SOLR (SolrProperties)  
  503. spring.data.solr.host=http://127.0.0.1:8983/solr # Solr host. Ignored if "zk-host" is set.  
  504. spring.data.solr.repositories.enabled=true # Enable Solr repositories.  
  505. spring.data.solr.zk-host= # ZooKeeper host address in the form HOST:PORT.  
  506.   
  507. # DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)  
  508. spring.datasource.continue-on-error=false # Do not stop if an error occurs while initializing the database.  
  509. spring.datasource.data= # Data (DML) script resource reference.  
  510. spring.datasource.driver-class-name= # Fully qualified name of the JDBC driver. Auto-detected based on the URL by default.  
  511. spring.datasource.initialize=true # Populate the database using 'data.sql'.  
  512. spring.datasource.jmx-enabled=false # Enable JMX support (if provided by the underlying pool).  
  513. spring.datasource.jndi-name= # JNDI location of the datasource. Class, url, username & password are ignored when set.  
  514. spring.datasource.max-active= # For instance 100  
  515. spring.datasource.max-idle= # For instance 8  
  516. spring.datasource.max-wait=  
  517. spring.datasource.min-evictable-idle-time-millis=  
  518. spring.datasource.min-idle=8  
  519. spring.datasource.name=testdb # Name of the datasource.  
  520. spring.datasource.password= # Login password of the database.  
  521. spring.datasource.platform=all # Platform to use in the schema resource (schema-${platform}.sql).  
  522. spring.datasource.schema= # Schema (DDL) script resource reference.  
  523. spring.datasource.separator=; # Statement separator in SQL initialization scripts.  
  524. spring.datasource.sql-script-encoding= # SQL scripts encoding.  
  525. spring.datasource.test-on-borrow= # For instance `false`  
  526. spring.datasource.test-on-return= # For instance `false`  
  527. spring.datasource.test-while-idle= #  
  528. spring.datasource.time-between-eviction-runs-millis= 1  
  529. spring.datasource.type= # Fully qualified name of the connection pool implementation to use. By default, it is auto-detected from the classpath.  
  530. spring.datasource.url= # JDBC url of the database.  
  531. spring.datasource.username=  
  532. spring.datasource.validation-query=  
  533.   
  534. # H2 Web Console (H2ConsoleProperties)  
  535. spring.h2.console.enabled=false # Enable the console.  
  536. spring.h2.console.path=/h2-console # Path at which the console will be available.  
  537.   
  538. # JOOQ (JooqAutoConfiguration)  
  539. spring.jooq.sql-dialect= # SQLDialect JOOQ used when communicating with the configured datasource. For instance `POSTGRES`  
  540.   
  541. # JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)  
  542. spring.data.jpa.repositories.enabled=true # Enable JPA repositories.  
  543. spring.jpa.database= # Target database to operate on, auto-detected by default. Can be alternatively set using the "databasePlatform" property.  
  544. spring.jpa.database-platform= # Name of the target database to operate on, auto-detected by default. Can be alternatively set using the "Database" enum.  
  545. spring.jpa.generate-ddl=false # Initialize the schema on startup.  
  546. spring.jpa.hibernate.ddl-auto= # DDL mode. This is actually a shortcut for the "hibernate.hbm2ddl.auto" property. Default to "create-drop" when using an embedded database, "none" otherwise.  
  547. spring.jpa.hibernate.naming-strategy= # Naming strategy fully qualified name.  
  548. spring.jpa.open-in-view=true # Register OpenEntityManagerInViewInterceptor. Binds a JPA EntityManager to the thread for the entire processing of the request.  
  549. spring.jpa.properties.*= # Additional native properties to set on the JPA provider.  
  550. spring.jpa.show-sql=false # Enable logging of SQL statements.  
  551.   
  552. # JTA (JtaAutoConfiguration)  
  553. spring.jta.log-dir= # Transaction logs directory.  
  554.   
  555. # ATOMIKOS  
  556. spring.jta.checkpoint-interval=500 # Interval between checkpoints.  
  557. spring.jta.console-file-count=1 # Number of debug logs files that can be created.  
  558. spring.jta.console-file-limit=-1 # How many bytes can be stored at most in debug logs files.  
  559. spring.jta.console-file-name=tm.out # Debug logs file name.  
  560. spring.jta.console-log-level= # Console log level.  
  561. spring.jta.default-jta-timeout=10000 # Default timeout for JTA transactions.  
  562. spring.jta.enable-logging=true # Enable disk logging.  
  563. spring.jta.force-shutdown-on-vm-exit=false # Specify if a VM shutdown should trigger forced shutdown of the transaction core.  
  564. spring.jta.log-base-dir= # Directory in which the log files should be stored.  
  565. spring.jta.log-base-name=tmlog # Transactions log file base name.  
  566. spring.jta.max-actives=50 # Maximum number of active transactions.  
  567. spring.jta.max-timeout=300000 # Maximum timeout (in milliseconds) that can be allowed for transactions.  
  568. spring.jta.output-dir= # Directory in which to store the debug log files.  
  569. spring.jta.serial-jta-transactions=true # Specify if sub-transactions should be joined when possible.  
  570. spring.jta.service= # Transaction manager implementation that should be started.  
  571. spring.jta.threaded-two-phase-commit=true # Use different (and concurrent) threads for two-phase commit on the participating resources.  
  572. spring.jta.transaction-manager-unique-name= # Transaction manager's unique name.  
  573. spring.jta.atomikos.connectionfactory.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.  
  574. spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag=true # Whether or not to ignore the transacted flag when creating session.  
  575. spring.jta.atomikos.connectionfactory.local-transaction-mode=false # Whether or not local transactions are desired.  
  576. spring.jta.atomikos.connectionfactory.maintenance-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.  
  577. spring.jta.atomikos.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.  
  578. spring.jta.atomikos.connectionfactory.max-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.  
  579. spring.jta.atomikos.connectionfactory.max-pool-size=1 # The maximum size of the pool.  
  580. spring.jta.atomikos.connectionfactory.min-pool-size=1 # The minimum size of the pool.  
  581. spring.jta.atomikos.connectionfactory.reap-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.  
  582. spring.jta.atomikos.connectionfactory.unique-resource-name=jmsConnectionFactory # The unique name used to identify the resource during recovery.  
  583. spring.jta.atomikos.datasource.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing connections from the pool.  
  584. spring.jta.atomikos.datasource.default-isolation-level= # Default isolation level of connections provided by the pool.  
  585. spring.jta.atomikos.datasource.login-timeout= # Timeout, in seconds, for establishing a database connection.  
  586. spring.jta.atomikos.datasource.maintenance-interval=60 # The time, in seconds, between runs of the pool's maintenance thread.  
  587. spring.jta.atomikos.datasource.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.  
  588. spring.jta.atomikos.datasource.max-lifetime=0 # The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.  
  589. spring.jta.atomikos.datasource.max-pool-size=1 # The maximum size of the pool.  
  590. spring.jta.atomikos.datasource.min-pool-size=1 # The minimum size of the pool.  
  591. spring.jta.atomikos.datasource.reap-timeout=0 # The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.  
  592. spring.jta.atomikos.datasource.test-query= # SQL query or statement used to validate a connection before returning it.  
  593. spring.jta.atomikos.datasource.unique-resource-name=dataSource # The unique name used to identify the resource during recovery.  
  594.   
  595. # BITRONIX  
  596. spring.jta.allow-multiple-lrc=false # Allow multiple LRC resources to be enlisted into the same transaction.  
  597. spring.jta.asynchronous2-pc=false # Enable asynchronously execution of two phase commit.  
  598. spring.jta.background-recovery-interval-seconds=60 # Interval in seconds at which to run the recovery process in the background.  
  599. spring.jta.current-node-only-recovery=true # Recover only the current node.  
  600. spring.jta.debug-zero-resource-transaction=false # Log the creation and commit call stacks of transactions executed without a single enlisted resource.  
  601. spring.jta.default-transaction-timeout=60 # Default transaction timeout in seconds.  
  602. spring.jta.disable-jmx=false # Enable JMX support.  
  603. spring.jta.exception-analyzer= # Set the fully qualified name of the exception analyzer implementation to use.  
  604. spring.jta.filter-log-status=false # Enable filtering of logs so that only mandatory logs are written.  
  605. spring.jta.force-batching-enabled=true #  Set if disk forces are batched.  
  606. spring.jta.forced-write-enabled=true # Set if logs are forced to disk.  
  607. spring.jta.graceful-shutdown-interval=60 # Maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown time.  
  608. spring.jta.jndi-transaction-synchronization-registry-name= # JNDI name of the TransactionSynchronizationRegistry.  
  609. spring.jta.jndi-user-transaction-name= # JNDI name of the UserTransaction.  
  610. spring.jta.journal=disk # Name of the journal. Can be 'disk', 'null' or a class name.  
  611. spring.jta.log-part1-filename=btm1.tlog # Name of the first fragment of the journal.  
  612. spring.jta.log-part2-filename=btm2.tlog # Name of the second fragment of the journal.  
  613. spring.jta.max-log-size-in-mb=2 # Maximum size in megabytes of the journal fragments.  
  614. spring.jta.resource-configuration-filename= # ResourceLoader configuration file name.  
  615. spring.jta.server-id= # ASCII ID that must uniquely identify this TM instance. Default to the machine's IP address.  
  616. spring.jta.skip-corrupted-logs=false # Skip corrupted transactions log entries.  
  617. spring.jta.warn-about-zero-resource-transaction=true # Log a warning for transactions executed without a single enlisted resource.  
  618. spring.jta.bitronix.connectionfactory.acquire-increment=1 # Number of connections to create when growing the pool.  
  619. spring.jta.bitronix.connectionfactory.acquisition-interval=1 # Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.  
  620. spring.jta.bitronix.connectionfactory.acquisition-timeout=30 # Timeout, in seconds, for acquiring connections from the pool.  
  621. spring.jta.bitronix.connectionfactory.allow-local-transactions=true # Whether or not the transaction manager should allow mixing XA and non-XA transactions.  
  622. spring.jta.bitronix.connectionfactory.apply-transaction-timeout=false # Whether or not the transaction timeout should be set on the XAResource when it is enlisted.  
  623. spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled=true # Whether or not resources should be enlisted and delisted automatically.  
  624. spring.jta.bitronix.connectionfactory.cache-producers-consumers=true # Whether or not produces and consumers should be cached.  
  625. spring.jta.bitronix.connectionfactory.defer-connection-release=true # Whether or not the provider can run many transactions on the same connection and supports transaction interleaving.  
  626. spring.jta.bitronix.connectionfactory.ignore-recovery-failures=false # Whether or not recovery failures should be ignored.  
  627. spring.jta.bitronix.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.  
  628. spring.jta.bitronix.connectionfactory.max-pool-size=10 # The maximum size of the pool. 0 denotes no limit.  
  629. spring.jta.bitronix.connectionfactory.min-pool-size=0 # The minimum size of the pool.  
  630. spring.jta.bitronix.connectionfactory.password= # The password to use to connect to the JMS provider.  
  631. spring.jta.bitronix.connectionfactory.share-transaction-connections=false #  Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.  
  632. spring.jta.bitronix.connectionfactory.test-connections=true # Whether or not connections should be tested when acquired from the pool.  
  633. spring.jta.bitronix.connectionfactory.two-pc-ordering-position=1 # The position that this resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is Integer.MAX_VALUE).  
  634. spring.jta.bitronix.connectionfactory.unique-name=jmsConnectionFactory # The unique name used to identify the resource during recovery.  
  635. spring.jta.bitronix.connectionfactory.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources.  
  636. spring.jta.bitronix.connectionfactory.user= # The user to use to connect to the JMS provider.  
  637. spring.jta.bitronix.datasource.acquire-increment=1 # Number of connections to create when growing the pool.  
  638. spring.jta.bitronix.datasource.acquisition-interval=1 # Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.  
  639. spring.jta.bitronix.datasource.acquisition-timeout=30 # Timeout, in seconds, for acquiring connections from the pool.  
  640. spring.jta.bitronix.datasource.allow-local-transactions=true # Whether or not the transaction manager should allow mixing XA and non-XA transactions.  
  641. spring.jta.bitronix.datasource.apply-transaction-timeout=false # Whether or not the transaction timeout should be set on the XAResource when it is enlisted.  
  642. spring.jta.bitronix.datasource.automatic-enlisting-enabled=true # Whether or not resources should be enlisted and delisted automatically.  
  643. spring.jta.bitronix.datasource.cursor-holdability= # The default cursor holdability for connections.  
  644. spring.jta.bitronix.datasource.defer-connection-release=true # Whether or not the database can run many transactions on the same connection and supports transaction interleaving.  
  645. spring.jta.bitronix.datasource.enable-jdbc4-connection-test= # Whether or not Connection.isValid() is called when acquiring a connection from the pool.  
  646. spring.jta.bitronix.datasource.ignore-recovery-failures=false # Whether or not recovery failures should be ignored.  
  647. spring.jta.bitronix.datasource.isolation-level= # The default isolation level for connections.  
  648. spring.jta.bitronix.datasource.local-auto-commit= # The default auto-commit mode for local transactions.  
  649. spring.jta.bitronix.datasource.login-timeout= # Timeout, in seconds, for establishing a database connection.  
  650. spring.jta.bitronix.datasource.max-idle-time=60 # The time, in seconds, after which connections are cleaned up from the pool.  
  651. spring.jta.bitronix.datasource.max-pool-size=10 # The maximum size of the pool. 0 denotes no limit.  
  652. spring.jta.bitronix.datasource.min-pool-size=0 # The minimum size of the pool.  
  653. spring.jta.bitronix.datasource.prepared-statement-cache-size=0 # The target size of the prepared statement cache. 0 disables the cache.  
  654. spring.jta.bitronix.datasource.share-transaction-connections=false #  Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.  
  655. spring.jta.bitronix.datasource.test-query= # SQL query or statement used to validate a connection before returning it.  
  656. spring.jta.bitronix.datasource.two-pc-ordering-position=1 # The position that this resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is Integer.MAX_VALUE).  
  657. spring.jta.bitronix.datasource.unique-name=dataSource # The unique name used to identify the resource during recovery.  
  658. spring.jta.bitronix.datasource.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources.  
  659.   
  660. # EMBEDDED MONGODB (EmbeddedMongoProperties)  
  661. spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable.  
  662. spring.mongodb.embedded.version=2.6.10 # Version of Mongo to use.  
  663.   
  664. # REDIS (RedisProperties)  
  665. spring.redis.database=0 # Database index used by the connection factory.  
  666. spring.redis.host=localhost # Redis server host.  
  667. spring.redis.password= # Login password of the redis server.  
  668. spring.redis.pool.max-active=8 # Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.  
  669. spring.redis.pool.max-idle=8 # Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.  
  670. spring.redis.pool.max-wait=-1 # Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.  
  671. spring.redis.pool.min-idle=0 # Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.  
  672. spring.redis.port=6379 # Redis server port.  
  673. spring.redis.sentinel.master= # Name of Redis server.  
  674. spring.redis.sentinel.nodes= # Comma-separated list of host:port pairs.  
  675. spring.redis.timeout=0 # Connection timeout in milliseconds.  
  676.   
  677.   
  678. # ----------------------------------------  
  679. # INTEGRATION PROPERTIES  
  680. # ----------------------------------------  
  681.   
  682. # ACTIVEMQ (ActiveMQProperties)  
  683. spring.activemq.broker-url= # URL of the ActiveMQ broker. Auto-generated by default. For instance `tcp://localhost:61616`  
  684. spring.activemq.in-memory=true # Specify if the default broker URL should be in memory. Ignored if an explicit broker has been specified.  
  685. spring.activemq.password= # Login password of the broker.  
  686. spring.activemq.pooled=false # Specify if a PooledConnectionFactory should be created instead of a regular ConnectionFactory.  
  687. spring.activemq.user= # Login user of the broker.  
  688.   
  689. # ARTEMIS (ArtemisProperties)  
  690. spring.artemis.embedded.cluster-password= # Cluster password. Randomly generated on startup by default.  
  691. spring.artemis.embedded.data-directory= # Journal file directory. Not necessary if persistence is turned off.  
  692. spring.artemis.embedded.enabled=true # Enable embedded mode if the Artemis server APIs are available.  
  693. spring.artemis.embedded.persistent=false # Enable persistent store.  
  694. spring.artemis.embedded.queues= # Comma-separated list of queues to create on startup.  
  695. spring.artemis.embedded.server-id= # Server id. By default, an auto-incremented counter is used.  
  696. spring.artemis.embedded.topics= # Comma-separated list of topics to create on startup.  
  697. spring.artemis.host=localhost # Artemis broker host.  
  698. spring.artemis.mode= # Artemis deployment mode, auto-detected by default. Can be explicitly set to "native" or "embedded".  
  699. spring.artemis.port=61616 # Artemis broker port.  
  700.   
  701. # SPRING BATCH (BatchProperties)  
  702. spring.batch.initializer.enabled=true # Create the required batch tables on startup if necessary.  
  703. spring.batch.job.enabled=true # Execute all Spring Batch jobs in the context on startup.  
  704. spring.batch.job.names= # Comma-separated list of job names to execute on startup (For instance `job1,job2`). By default, all Jobs found in the context are executed.  
  705. spring.batch.schema=classpath:org/springframework/batch/core/schema-@@platform@@.sql # Path to the SQL file to use to initialize the database schema.  
  706. spring.batch.table-prefix= # Table prefix for all the batch meta-data tables.  
  707.   
  708. # HORNETQ (HornetQProperties)  
  709. spring.hornetq.embedded.cluster-password= # Cluster password. Randomly generated on startup by default.  
  710. spring.hornetq.embedded.data-directory= # Journal file directory. Not necessary if persistence is turned off.  
  711. spring.hornetq.embedded.enabled=true # Enable embedded mode if the HornetQ server APIs are available.  
  712. spring.hornetq.embedded.persistent=false # Enable persistent store.  
  713. spring.hornetq.embedded.queues= # Comma-separated list of queues to create on startup.  
  714. spring.hornetq.embedded.server-id= # Server id. By default, an auto-incremented counter is used.  
  715. spring.hornetq.embedded.topics= # Comma-separated list of topics to create on startup.  
  716. spring.hornetq.host=localhost # HornetQ broker host.  
  717. spring.hornetq.mode= # HornetQ deployment mode, auto-detected by default. Can be explicitly set to "native" or "embedded".  
  718. spring.hornetq.port=5445 # HornetQ broker port.  
  719.   
  720. # JMS (JmsProperties)  
  721. spring.jms.jndi-name= # Connection factory JNDI name. When set, takes precedence to others connection factory auto-configurations.  
  722. spring.jms.listener.acknowledge-mode= # Acknowledge mode of the container. By default, the listener is transacted with automatic acknowledgment.  
  723. spring.jms.listener.auto-startup=true # Start the container automatically on startup.  
  724. spring.jms.listener.concurrency= # Minimum number of concurrent consumers.  
  725. spring.jms.listener.max-concurrency= # Maximum number of concurrent consumers.  
  726. spring.jms.pub-sub-domain=false # Specify if the default destination type is topic.  
  727.   
  728. # RABBIT (RabbitProperties)  
  729. spring.rabbitmq.addresses= # Comma-separated list of addresses to which the client should connect to.  
  730. spring.rabbitmq.dynamic=true # Create an AmqpAdmin bean.  
  731. spring.rabbitmq.host=localhost # RabbitMQ host.  
  732. spring.rabbitmq.listener.acknowledge-mode= # Acknowledge mode of container.  
  733. spring.rabbitmq.listener.auto-startup=true # Start the container automatically on startup.  
  734. spring.rabbitmq.listener.concurrency= # Minimum number of consumers.  
  735. spring.rabbitmq.listener.max-concurrency= # Maximum number of consumers.  
  736. spring.rabbitmq.listener.prefetch= # Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).  
  737. spring.rabbitmq.listener.transaction-size= # Number of messages to be processed in a transaction. For best results it should be less than or equal to the prefetch count.  
  738. spring.rabbitmq.password= # Login to authenticate against the broker.  
  739. spring.rabbitmq.port=5672 # RabbitMQ port.  
  740. spring.rabbitmq.requested-heartbeat= # Requested heartbeat timeout, in seconds; zero for none.  
  741. spring.rabbitmq.ssl.enabled=false # Enable SSL support.  
  742. spring.rabbitmq.ssl.key-store= # Path to the key store that holds the SSL certificate.  
  743. spring.rabbitmq.ssl.key-store-password= # Password used to access the key store.  
  744. spring.rabbitmq.ssl.trust-store= # Trust store that holds SSL certificates.  
  745. spring.rabbitmq.ssl.trust-store-password= # Password used to access the trust store.  
  746. spring.rabbitmq.ssl.algorithm= # SSL algorithm to use. By default configure by the rabbit client library.  
  747. spring.rabbitmq.username= # Login user to authenticate to the broker.  
  748. spring.rabbitmq.virtual-host= # Virtual host to use when connecting to the broker.  
  749.   
  750.   
  751. # ----------------------------------------  
  752. # ACTUATOR PROPERTIES  
  753. # ----------------------------------------  
  754.   
  755. # ENDPOINTS (AbstractEndpoint subclasses)  
  756. endpoints.enabled=true # Enable endpoints.  
  757. endpoints.sensitive= # Default endpoint sensitive setting.  
  758. endpoints.actuator.enabled=true # Enable the endpoint.  
  759. endpoints.actuator.path= # Endpoint URL path.  
  760. endpoints.actuator.sensitive=false # Enable security on the endpoint.  
  761. endpoints.autoconfig.enabled= # Enable the endpoint.  
  762. endpoints.autoconfig.id= # Endpoint identifier.  
  763. endpoints.autoconfig.sensitive= # Mark if the endpoint exposes sensitive information.  
  764. endpoints.beans.enabled= # Enable the endpoint.  
  765. endpoints.beans.id= # Endpoint identifier.  
  766. endpoints.beans.sensitive= # Mark if the endpoint exposes sensitive information.  
  767. endpoints.configprops.enabled= # Enable the endpoint.  
  768. endpoints.configprops.id= # Endpoint identifier.  
  769. endpoints.configprops.keys-to-sanitize=password,secret,key,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.  
  770. endpoints.configprops.sensitive= # Mark if the endpoint exposes sensitive information.  
  771. endpoints.docs.curies.enabled=false # Enable the curie generation.  
  772. endpoints.docs.enabled=true # Enable actuator docs endpoint.  
  773. endpoints.docs.path=/docs #  
  774. endpoints.docs.sensitive=false #  
  775. endpoints.dump.enabled= # Enable the endpoint.  
  776. endpoints.dump.id= # Endpoint identifier.  
  777. endpoints.dump.sensitive= # Mark if the endpoint exposes sensitive information.  
  778. endpoints.env.enabled= # Enable the endpoint.  
  779. endpoints.env.id= # Endpoint identifier.  
  780. endpoints.env.keys-to-sanitize=password,secret,key,.*credentials.*,vcap_services # Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.  
  781. endpoints.env.sensitive= # Mark if the endpoint exposes sensitive information.  
  782. endpoints.flyway.enabled= # Enable the endpoint.  
  783. endpoints.flyway.id= # Endpoint identifier.  
  784. endpoints.flyway.sensitive= # Mark if the endpoint exposes sensitive information.  
  785. endpoints.health.enabled= # Enable the endpoint.  
  786. endpoints.health.id= # Endpoint identifier.  
  787. endpoints.health.mapping.*= # Mapping of health statuses to HttpStatus codes. By default, registered health statuses map to sensible defaults (i.e. UP maps to 200).  
  788. endpoints.health.sensitive= # Mark if the endpoint exposes sensitive information.  
  789. endpoints.health.time-to-live=1000 # Time to live for cached result, in milliseconds.  
  790. endpoints.info.enabled= # Enable the endpoint.  
  791. endpoints.info.id= # Endpoint identifier.  
  792. endpoints.info.sensitive= # Mark if the endpoint exposes sensitive information.  
  793. endpoints.jolokia.enabled=true # Enable Jolokia endpoint.  
  794. endpoints.jolokia.path=/jolokia # Endpoint URL path.  
  795. endpoints.jolokia.sensitive=true # Enable security on the endpoint.  
  796. endpoints.liquibase.enabled= # Enable the endpoint.  
  797. endpoints.liquibase.id= # Endpoint identifier.  
  798. endpoints.liquibase.sensitive= # Mark if the endpoint exposes sensitive information.  
  799. endpoints.logfile.enabled=true # Enable the endpoint.  
  800. endpoints.logfile.path=/logfile # Endpoint URL path.  
  801. endpoints.logfile.sensitive=true # Enable security on the endpoint.  
  802. endpoints.mappings.enabled= # Enable the endpoint.  
  803. endpoints.mappings.id= # Endpoint identifier.  
  804. endpoints.mappings.sensitive= # Mark if the endpoint exposes sensitive information.  
  805. endpoints.metrics.enabled= # Enable the endpoint.  
  806. endpoints.metrics.filter.enabled=true # Enable the metrics servlet filter.  
  807. endpoints.metrics.id= # Endpoint identifier.  
  808. endpoints.metrics.sensitive= # Mark if the endpoint exposes sensitive information.  
  809. endpoints.shutdown.enabled= # Enable the endpoint.  
  810. endpoints.shutdown.id= # Endpoint identifier.  
  811. endpoints.shutdown.sensitive= # Mark if the endpoint exposes sensitive information.  
  812. endpoints.trace.enabled= # Enable the endpoint.  
  813. endpoints.trace.id= # Endpoint identifier.  
  814. endpoints.trace.sensitive= # Mark if the endpoint exposes sensitive information.  
  815.   
  816. # ENDPOINTS CORS CONFIGURATION (EndpointCorsProperties)  
  817. endpoints.cors.allow-credentials= # Set whether credentials are supported. When not set, credentials are not supported.  
  818. endpoints.cors.allowed-headers= # Comma-separated list of headers to allow in a request. '*' allows all headers.  
  819. endpoints.cors.allowed-methods=GET # Comma-separated list of methods to allow. '*' allows all methods.  
  820. endpoints.cors.allowed-origins= # Comma-separated list of origins to allow. '*' allows all origins. When not set, CORS support is disabled.  
  821. endpoints.cors.exposed-headers= # Comma-separated list of headers to include in a response.  
  822. endpoints.cors.max-age=1800 # How long, in seconds, the response from a pre-flight request can be cached by clients.  
  823.   
  824. # JMX ENDPOINT (EndpointMBeanExportProperties)  
  825. endpoints.jmx.domain= # JMX domain name. Initialized with the value of 'spring.jmx.default-domain' if set.  
  826. endpoints.jmx.enabled=true # Enable JMX export of all endpoints.  
  827. endpoints.jmx.static-names= # Additional static properties to append to all ObjectNames of MBeans representing Endpoints.  
  828. endpoints.jmx.unique-names=false # Ensure that ObjectNames are modified in case of conflict.  
  829.   
  830. # JOLOKIA (JolokiaProperties)  
  831. jolokia.config.*= # See Jolokia manual  
  832.   
  833. # MANAGEMENT HTTP SERVER (ManagementServerProperties)  
  834. management.add-application-context-header=true # Add the "X-Application-Context" HTTP header in each response.  
  835. management.address= # Network address that the management endpoints should bind to.  
  836. management.context-path= # Management endpoint context-path. For instance `/actuator`  
  837. management.port= # Management endpoint HTTP port. Use the same port as the application by default.  
  838. management.security.enabled=true # Enable security.  
  839. management.security.role=ADMIN # Role required to access the management endpoint.  
  840. management.security.sessions=stateless # Session creating policy to use (always, never, if_required, stateless).  
  841.   
  842. # HEALTH INDICATORS (previously health.*)  
  843. management.health.db.enabled=true # Enable database health check.  
  844. management.health.defaults.enabled=true # Enable default health indicators.  
  845. management.health.diskspace.enabled=true # Enable disk space health check.  
  846. management.health.diskspace.path= # Path used to compute the available disk space.  
  847. management.health.diskspace.threshold=0 # Minimum disk space that should be available, in bytes.  
  848. management.health.elasticsearch.enabled=true # Enable elasticsearch health check.  
  849. management.health.elasticsearch.indices= # Comma-separated index names.  
  850. management.health.elasticsearch.response-timeout=100 # The time, in milliseconds, to wait for a response from the cluster.  
  851. management.health.jms.enabled=true # Enable JMS health check.  
  852. management.health.mail.enabled=true # Enable Mail health check.  
  853. management.health.mongo.enabled=true # Enable MongoDB health check.  
  854. management.health.rabbit.enabled=true # Enable RabbitMQ health check.  
  855. management.health.redis.enabled=true # Enable Redis health check.  
  856. management.health.solr.enabled=true # Enable Solr health check.  
  857. management.health.status.order=DOWN, OUT_OF_SERVICE, UNKNOWN, UP # Comma-separated list of health statuses in order of severity.  
  858.   
  859. # TRACING ((TraceProperties)  
  860. management.trace.include=request-headers,response-headers,errors # Items to be included in the trace.  
  861.   
  862. # REMOTE SHELL  
  863. shell.auth=simple # Authentication type. Auto-detected according to the environment.  
  864. shell.auth.jaas.domain=my-domain # JAAS domain.  
  865. shell.auth.key.path= # Path to the authentication key. This should point to a valid ".pem" file.  
  866. shell.auth.simple.user.name=user # Login user.  
  867. shell.auth.simple.user.password= # Login password.  
  868. shell.auth.spring.roles=ADMIN # Comma-separated list of required roles to login to the CRaSH console.  
  869. shell.command-path-patterns=classpath*:/commands/**,classpath*:/crash/commands/** # Patterns to use to look for commands.  
  870. shell.command-refresh-interval=-1 # Scan for changes and update the command if necessary (in seconds).  
  871. shell.config-path-patterns=classpath*:/crash/* # Patterns to use to look for configurations.  
  872. shell.disabled-commands=jpa*,jdbc*,jndi* # Comma-separated list of commands to disable.  
  873. shell.disabled-plugins= # Comma-separated list of plugins to disable. Certain plugins are disabled by default based on the environment.  
  874. shell.ssh.auth-timeout = # Number of milliseconds after user will be prompted to login again.  
  875. shell.ssh.enabled=true # Enable CRaSH SSH support.  
  876. shell.ssh.idle-timeout = # Number of milliseconds after which unused connections are closed.  
  877. shell.ssh.key-path= # Path to the SSH server key.  
  878. shell.ssh.port=2000 # SSH port.  
  879. shell.telnet.enabled=false # Enable CRaSH telnet support. Enabled by default if the TelnetPlugin is  available.  
  880. shell.telnet.port=5000 # Telnet port.  
  881.   
  882. # GIT INFO  
  883. spring.git.properties= # Resource reference to a generated git info properties file.  
  884.   
  885. # METRICS EXPORT (MetricExportProperties)  
  886. spring.metrics.export.aggregate.key-pattern= # Pattern that tells the aggregator what to do with the keys from the source repository.  
  887. spring.metrics.export.aggregate.prefix= # Prefix for global repository if active.  
  888. spring.metrics.export.delay-millis=5000 # Delay in milliseconds between export ticks. Metrics are exported to external sources on a schedule with this delay.  
  889. spring.metrics.export.enabled=true # Flag to enable metric export (assuming a MetricWriter is available).  
  890. spring.metrics.export.excludes= # List of patterns for metric names to exclude. Applied after the includes.  
  891. spring.metrics.export.includes= # List of patterns for metric names to include.  
  892. spring.metrics.export.redis.key=keys.spring.metrics # Key for redis repository export (if active).  
  893. spring.metrics.export.redis.prefix=spring.metrics # Prefix for redis repository if active.  
  894. spring.metrics.export.send-latest= # Flag to switch off any available optimizations based on not exporting unchanged metric values.  
  895. spring.metrics.export.statsd.host= # Host of a statsd server to receive exported metrics.  
  896. spring.metrics.export.statsd.port=8125 # Port of a statsd server to receive exported metrics.  
  897. spring.metrics.export.statsd.prefix= # Prefix for statsd exported metrics.  
  898. spring.metrics.export.triggers.*= # Specific trigger properties per MetricWriter bean name.  
  899.   
  900.   
  901. # ----------------------------------------  
  902. # DEVTOOLS PROPERTIES  
  903. # ----------------------------------------  
  904.   
  905. # DEVTOOLS (DevToolsProperties)  
  906. spring.devtools.livereload.enabled=true # Enable a livereload.com compatible server.  
  907. spring.devtools.livereload.port=35729 # Server port.  
  908. spring.devtools.restart.additional-exclude= # Additional patterns that should be excluded from triggering a full restart.  
  909. spring.devtools.restart.additional-paths= # Additional paths to watch for changes.  
  910. spring.devtools.restart.enabled=true # Enable automatic restart.  
  911. spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties # Patterns that should be excluded from triggering a full restart.  
  912. spring.devtools.restart.poll-interval=1000 # Amount of time (in milliseconds) to wait between polling for classpath changes.  
  913. spring.devtools.restart.quiet-period=400 # Amount of quiet time (in milliseconds) required without any classpath changes before a restart is triggered.  
  914. spring.devtools.restart.trigger-file= # Name of a specific file that when changed will trigger the restart check. If not specified any classpath file change will trigger the restart.  
  915.   
  916. # REMOTE DEVTOOLS (RemoteDevToolsProperties)  
  917. spring.devtools.remote.context-path=/.~~spring-boot!~ # Context path used to handle the remote connection.  
  918. spring.devtools.remote.debug.enabled=true # Enable remote debug support.  
  919. spring.devtools.remote.debug.local-port=8000 # Local remote debug server port.  
  920. spring.devtools.remote.proxy.host= # The host of the proxy to use to connect to the remote application.  
  921. spring.devtools.remote.proxy.port= # The port of the proxy to use to connect to the remote application.  
  922. spring.devtools.remote.restart.enabled=true # Enable remote restart.  
  923. spring.devtools.remote.secret= # A shared secret required to establish a connection (required to enable remote support).  
  924. spring.devtools.remote.secret-header-name=X-AUTH-TOKEN # HTTP header used to transfer the shared secret.
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 玄门小奶包是冥界最强打工人 珠柔 我靠完成小团子心愿续命 举一反三式爱你 战神她在娱乐圈杀疯了 当家嫡女:背靠系统富甲天下 停!反派总裁不准亲亲抱抱系统 逃荒:嫁给黏唧唧人鱼后吃不消了 荒野直播:影帝的小娇娇藏不住了 限时暗恋 被迫给反派续命后在娱乐圈爆火了 将军夫人你莫走 在源能世界中觉醒全知之眼 我去华娱探探路 带娃虐渣,女将军穿年代后杀疯了 带着妈妈活到末世结束 十八线女配穿进后宫演顶流 斗罗:重生胡列娜在武魂殿当团宠 大景女星官 报!娘娘在种田路上福星高照 靠美食成为星际首富 夫人她每天都想摸鱼摆烂 寒门重生女 穿书:侧妃她要改剧本 作妖小青梅总想遇见我 重生成团宠文炮灰 全师门就我一个人是废柴 反派家的团宠崽崽是神兽 越界臣服 重生之鱼刺救我狗命 修仙:哈哈哈鸡汤来咯 萌宝来袭:带着空间穿九零 快跑,宿主她不对劲 小哭包她软软糯糯 超甜!重生后左相被我撩到腿软 超真实探案推理游戏 惊!霍总怀里的小娇妻失忆后想逃婚 我和暴君有个崽 荒野求生我靠传播非遗爆红全世界 肆意难撩 女尊之夫郎他娇软又呆萌