spring boot配置文件

╰半橙微兮° 2022-07-15 03:50 322阅读 0赞

转载自:http://www.cnblogs.com/puroc/p/5049170.html

1、spring boot通常打成一个jar文件发布,想修改配置文件比较麻烦,但他提供了一种读取外部配置文件的方式。在代码的主类中增加如下代码

  1. System.setProperty("spring.config.location","/Users/pud/Desktop/test.properties");

通过spring.config.location这个关键字指定配置文件的路径,熟悉java的同学应该知道还有其他方式来指定这个配置,如在jvm参数中通过-D来指定,这里不多说了。

这样在src/main/resources目录下有一个application.properties中就可以这样添加配置信息了,使用${}

  1. spring.datasource.url=${url}
  2. spring.datasource.username=${username}
  3. spring.datasource.password=${password}
  4. spring.datasource.driver-class-name=${driver}

在外部的配置文件,定义如下:

  1. url=jdbc:mysql://localhost:3306/product
  2. username=root
  3. password=123456
  4. driver=com.mysql.jdbc.Driver

2、在application.properties这个文件中可以配置哪些内容?如下:

  1. # SPRING CONFIG (ConfigFileApplicationListener)
  2. spring.config.name= # config file name (default to 'application')
  3. spring.config.location= # location of config file
  4. # PROFILES
  5. spring.profiles.active= # comma list of active profiles
  6. spring.profiles.include= # unconditionally activate the specified commaseparated profiles
  7. # APPLICATION SETTINGS (SpringApplication)
  8. spring.main.sources=
  9. spring.main.web-environment= # detect by default
  10. spring.main.show-banner=true
  11. spring.main....= # see class for all properties
  12. # LOGGING
  13. logging.path=/var/logs
  14. logging.file=myapp.log
  15. logging.config= # location of config file (default classpath:logback.xmlfor logback)
  16. logging.level.*= # levels for loggers, e.g."logging.level.org.springframework=DEBUG" (TRACE, DEBUG, INFO, WARN,ERROR, FATAL, OFF)
  17. # IDENTITY (ContextIdApplicationContextInitializer)
  18. spring.application.name=
  19. spring.application.index=
  20. # EMBEDDED SERVER CONFIGURATION (ServerProperties)
  21. server.port=8080
  22. server.address= # bind to a specific NIC
  23. server.session-timeout= # session timeout in seconds
  24. server.context-parameters.*= # Servlet context init parameters, e.g.server.context-parameters.a=alpha
  25. server.context-path= # the context path, defaults to '/'
  26. server.servlet-path= # the servlet path, defaults to '/'
  27. server.ssl.enabled=true # if SSL support is enabled
  28. server.ssl.client-auth= # want or need
  29. server.ssl.key-alias=
  30. server.ssl.ciphers= # supported SSL ciphers
  31. server.ssl.key-password=
  32. server.ssl.key-store=
  33. server.ssl.key-store-password=
  34. server.ssl.key-store-provider=
  35. server.ssl.key-store-type=
  36. server.ssl.protocol=TLS
  37. server.ssl.trust-store=
  38. server.ssl.trust-store-password=
  39. server.ssl.trust-store-provider=
  40. server.ssl.trust-store-type=
  41. server.tomcat.access-log-pattern= # log pattern of the access log
  42. server.tomcat.access-log-enabled=false # is access logging enabled
  43. server.tomcat.internal-proxies=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
  44. 192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\
  45. 169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\
  46. 127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}# regular expression matching trusted IP addresses
  47. server.tomcat.protocol-header=x-forwarded-proto # front end proxyforward header
  48. server.tomcat.port-header= # front end proxy port header
  49. server.tomcat.remote-ip-header=x-forwarded-for
  50. server.tomcat.basedir=/tmp # base dir (usually not needed, defaults totmp)
  51. server.tomcat.background-processor-delay=30; # in seconds
  52. server.tomcat.max-http-header-size= # maximum size in bytes of the HTTPmessage header
  53. server.tomcat.max-threads = 0 # number of threads in protocol handler
  54. server.tomcat.uri-encoding = UTF-8 # character encoding to use for URLdecoding
  55. # SPRING MVC (WebMvcProperties)
  56. spring.mvc.locale= # set fixed locale, e.g. en_UK
  57. spring.mvc.date-format= # set fixed date format, e.g. dd/MM/yyyy
  58. spring.mvc.message-codes-resolver-format= # PREFIX_ERROR_CODE /POSTFIX_ERROR_CODE
  59. spring.mvc.ignore-default-model-on-redirect=true # If the the content ofthe "default" model should be ignored redirects
  60. spring.view.prefix= # MVC view prefix
  61. spring.view.suffix= # ... and suffix
  62. spring.resources.cache-period= # cache timeouts in headers sent tobrowser
  63. spring.resources.add-mappings=true # if default mappings should be added
  64. # SPRING HATEOS (HateoasProperties)
  65. spring.hateoas.apply-to-primary-object-mapper=true # if the primarymapper should also be configured
  66. # HTTP encoding (HttpEncodingProperties)
  67. spring.http.encoding.charset=UTF-8 # the encoding of HTTPrequests/responses
  68. spring.http.encoding.enabled=true # enable http encoding support
  69. spring.http.encoding.force=true # force the configured encoding
  70. # JACKSON (JacksonProperties)
  71. spring.jackson.date-format= # Date format string (e.g. yyyy-MM-ddHH:mm:ss), or a fully-qualified date format class name (e.g.com.fasterxml.jackson.databind.util.ISO8601DateFormat)
  72. spring.jackson.property-naming-strategy= # One of the constants onJackson's PropertyNamingStrategy (e.g.CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES) or the fully-qualified class name ofa PropertyNamingStrategy subclass
  73. spring.jackson.deserialization.*= # see Jackson's DeserializationFeature
  74. spring.jackson.generator.*= # see Jackson's JsonGenerator.Feature
  75. spring.jackson.mapper.*= # see Jackson's MapperFeature
  76. spring.jackson.parser.*= # see Jackson's JsonParser.Feature
  77. spring.jackson.serialization.*= # see Jackson's SerializationFeature
  78. # THYMELEAF (ThymeleafAutoConfiguration)
  79. spring.thymeleaf.check-template-location=true
  80. spring.thymeleaf.prefix=classpath:/templates/
  81. spring.thymeleaf.excluded-view-names= # comma-separated list of viewnames that should be excluded from resolution
  82. spring.thymeleaf.view-names= # comma-separated list of view names thatcan be resolved
  83. spring.thymeleaf.suffix=.html
  84. spring.thymeleaf.mode=HTML5
  85. spring.thymeleaf.encoding=UTF-8
  86. spring.thymeleaf.content-type=text/html # ;charset=<encoding> isadded
  87. spring.thymeleaf.cache=true # set to false for hot refresh
  88. # FREEMARKER (FreeMarkerAutoConfiguration)
  89. spring.freemarker.allow-request-override=false
  90. spring.freemarker.cache=true
  91. spring.freemarker.check-template-location=true
  92. spring.freemarker.charset=UTF-8
  93. spring.freemarker.content-type=text/html
  94. spring.freemarker.expose-request-attributes=false
  95. spring.freemarker.expose-session-attributes=false
  96. spring.freemarker.expose-spring-macro-helpers=false
  97. spring.freemarker.prefix=
  98. spring.freemarker.request-context-attribute=
  99. spring.freemarker.settings.*=
  100. spring.freemarker.suffix=.ftl
  101. spring.freemarker.template-loader-path=classpath:/templates/ #comma-separated list
  102. spring.freemarker.view-names= # whitelist of view names that can be resolved
  103. # GROOVY TEMPLATES (GroovyTemplateAutoConfiguration)
  104. spring.groovy.template.cache=true
  105. spring.groovy.template.charset=UTF-8
  106. spring.groovy.template.configuration.*= # See Groovy'sTemplateConfiguration
  107. spring.groovy.template.content-type=text/html
  108. spring.groovy.template.prefix=classpath:/templates/
  109. spring.groovy.template.suffix=.tpl
  110. spring.groovy.template.view-names= # whitelist of view names that can beresolved
  111. # VELOCITY TEMPLATES (VelocityAutoConfiguration)
  112. spring.velocity.allow-request-override=false
  113. spring.velocity.cache=true
  114. spring.velocity.check-template-location=true
  115. spring.velocity.charset=UTF-8
  116. spring.velocity.content-type=text/html
  117. spring.velocity.date-tool-attribute=
  118. spring.velocity.expose-request-attributes=false
  119. spring.velocity.expose-session-attributes=false
  120. spring.velocity.expose-spring-macro-helpers=false
  121. spring.velocity.number-tool-attribute=
  122. spring.velocity.prefer-file-system-access=true # prefer file systemaccess for template loading
  123. spring.velocity.prefix=
  124. spring.velocity.properties.*=
  125. spring.velocity.request-context-attribute=
  126. spring.velocity.resource-loader-path=classpath:/templates/
  127. spring.velocity.suffix=.vm
  128. spring.velocity.toolbox-config-location= # velocity Toolbox configlocation, for example "/WEB-INF/toolbox.xml"
  129. spring.velocity.view-names= # whitelist of view names that can beresolved
  130. # JERSEY (JerseyProperties)
  131. spring.jersey.type=servlet # servlet or filter
  132. spring.jersey.init= # init params
  133. spring.jersey.filter.order=
  134. # INTERNATIONALIZATION (MessageSourceAutoConfiguration)
  135. spring.messages.basename=messages
  136. spring.messages.cache-seconds=-1
  137. spring.messages.encoding=UTF-8
  138. # SECURITY (SecurityProperties)
  139. security.user.name=user # login username
  140. security.user.password= # login password
  141. security.user.role=USER # role assigned to the user
  142. security.require-ssl=false # advanced settings ...
  143. security.enable-csrf=false
  144. security.basic.enabled=true
  145. security.basic.realm=Spring
  146. security.basic.path= # /**
  147. security.filter-order=0
  148. security.headers.xss=false
  149. security.headers.cache=false
  150. security.headers.frame=false
  151. security.headers.content-type=false
  152. security.headers.hsts=all # none / domain / all
  153. security.sessions=stateless # always / never / if_required / stateless
  154. security.ignored=false
  155. # DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
  156. spring.datasource.name= # name of the data source
  157. spring.datasource.initialize=true # populate using data.sql
  158. spring.datasource.schema= # a schema (DDL) script resource reference
  159. spring.datasource.data= # a data (DML) script resource reference
  160. spring.datasource.sql-script-encoding= # a charset for reading SQLscripts
  161. spring.datasource.platform= # the platform to use in the schema resource(schema-${platform}.sql)
  162. spring.datasource.continue-on-error=false # continue even if can't beinitialized
  163. spring.datasource.separator=; # statement separator in SQLinitialization scripts
  164. spring.datasource.driver-class-name= # JDBC Settings...
  165. spring.datasource.url=
  166. spring.datasource.username=
  167. spring.datasource.password=
  168. spring.datasource.jndi-name= # For JNDI lookup (class, url, username& password are ignored when set)
  169. spring.datasource.max-active=100 # Advanced configuration...
  170. spring.datasource.max-idle=8
  171. spring.datasource.min-idle=8
  172. spring.datasource.initial-size=10
  173. spring.datasource.validation-query=
  174. spring.datasource.test-on-borrow=false
  175. spring.datasource.test-on-return=false
  176. spring.datasource.test-while-idle=
  177. spring.datasource.time-between-eviction-runs-millis=
  178. spring.datasource.min-evictable-idle-time-millis=
  179. spring.datasource.max-wait=
  180. spring.datasource.jmx-enabled=false # Export JMX MBeans (if supported)
  181. # DATASOURCE (PersistenceExceptionTranslationAutoConfiguration
  182. spring.dao.exceptiontranslation.enabled=true
  183. # MONGODB (MongoProperties)
  184. spring.data.mongodb.host= # the db host
  185. spring.data.mongodb.port=27017 # the connection port (defaults to 27107)
  186. spring.data.mongodb.uri=mongodb://localhost/test # connection URL
  187. spring.data.mongodb.database=
  188. spring.data.mongodb.authentication-database=
  189. spring.data.mongodb.grid-fs-database=
  190. spring.data.mongodb.username=
  191. spring.data.mongodb.password=
  192. spring.data.mongodb.repositories.enabled=true # if spring datarepository support is enabled
  193. # JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)
  194. spring.jpa.properties.*= # properties to set on the JPA connection
  195. spring.jpa.open-in-view=true
  196. spring.jpa.show-sql=true
  197. spring.jpa.database-platform=
  198. spring.jpa.database=
  199. spring.jpa.generate-ddl=false # ignored by Hibernate, might be usefulfor other vendors
  200. spring.jpa.hibernate.naming-strategy= # naming classname
  201. spring.jpa.hibernate.ddl-auto= # defaults to create-drop for embeddeddbs
  202. spring.data.jpa.repositories.enabled=true # if spring data repositorysupport is enabled
  203. # JTA (JtaAutoConfiguration)
  204. spring.jta.log-dir= # transaction log dir
  205. spring.jta.*= # technology specific configuration
  206. # SOLR (SolrProperties})
  207. spring.data.solr.host=http://127.0.0.1:8983/solr
  208. spring.data.solr.zk-host=
  209. spring.data.solr.repositories.enabled=true # if spring data repositorysupport is enabled
  210. # ELASTICSEARCH (ElasticsearchProperties})
  211. spring.data.elasticsearch.cluster-name= # The cluster name (defaults toelasticsearch)
  212. spring.data.elasticsearch.cluster-nodes= # The address(es) of the servernode (comma-separated; if not specified starts a client node)
  213. spring.data.elasticsearch.repositories.enabled=true # if spring datarepository support is enabled
  214. # DATA RESET (RepositoryRestConfiguration})
  215. spring.data.rest.base-uri= # base URI against which the exporter shouldcalculate its links
  216. # FLYWAY (FlywayProperties)
  217. flyway.check-location=false # check that migration scripts locationexists
  218. flyway.locations=classpath:db/migration # locations of migrationsscripts
  219. flyway.schemas= # schemas to update
  220. flyway.init-version= 1 # version to start migration
  221. flyway.init-sqls= # SQL statements to execute to initialize a connectionimmediately after obtaining it
  222. flyway.sql-migration-prefix=V
  223. flyway.sql-migration-suffix=.sql
  224. flyway.enabled=true
  225. flyway.url= # JDBC url if you want Flyway to create its own DataSource
  226. flyway.user= # JDBC username if you want Flyway to create its ownDataSource
  227. flyway.password= # JDBC password if you want Flyway to create its ownDataSource
  228. # LIQUIBASE (LiquibaseProperties)
  229. liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml
  230. liquibase.check-change-log-location=true # check the change log locationexists
  231. liquibase.contexts= # runtime contexts to use
  232. liquibase.default-schema= # default database schema to use
  233. liquibase.drop-first=false
  234. liquibase.enabled=true
  235. liquibase.url= # specific JDBC url (if not set the default datasource isused)
  236. liquibase.user= # user name for liquibase.url
  237. liquibase.password= # password for liquibase.url
  238. # JMX
  239. spring.jmx.enabled=true # Expose MBeans from Spring
  240. # RABBIT (RabbitProperties)
  241. spring.rabbitmq.host= # connection host
  242. spring.rabbitmq.port= # connection port
  243. spring.rabbitmq.addresses= # connection addresses (e.g.myhost:9999,otherhost:1111)
  244. spring.rabbitmq.username= # login user
  245. spring.rabbitmq.password= # login password
  246. spring.rabbitmq.virtual-host=
  247. spring.rabbitmq.dynamic=
  248. # REDIS (RedisProperties)
  249. spring.redis.database= # database name
  250. spring.redis.host=localhost # server host
  251. spring.redis.password= # server password
  252. spring.redis.port=6379 # connection port
  253. spring.redis.pool.max-idle=8 # pool settings ...
  254. spring.redis.pool.min-idle=0
  255. spring.redis.pool.max-active=8
  256. spring.redis.pool.max-wait=-1
  257. spring.redis.sentinel.master= # name of Redis server
  258. spring.redis.sentinel.nodes= # comma-separated list of host:port pairs
  259. # ACTIVEMQ (ActiveMQProperties)
  260. spring.activemq.broker-url=tcp://localhost:61616 # connection URL
  261. spring.activemq.user=
  262. spring.activemq.password=
  263. spring.activemq.in-memory=true # broker kind to create if no broker-urlis specified
  264. spring.activemq.pooled=false
  265. # HornetQ (HornetQProperties)
  266. spring.hornetq.mode= # connection mode (native, embedded)
  267. spring.hornetq.host=localhost # hornetQ host (native mode)
  268. spring.hornetq.port=5445 # hornetQ port (native mode)
  269. spring.hornetq.embedded.enabled=true # if the embedded server is enabled(needs hornetq-jms-server.jar)
  270. spring.hornetq.embedded.server-id= # auto-generated id of the embeddedserver (integer)
  271. spring.hornetq.embedded.persistent=false # message persistence
  272. spring.hornetq.embedded.data-directory= # location of data content (whenpersistence is enabled)
  273. spring.hornetq.embedded.queues= # comma-separated queues to create onstartup
  274. spring.hornetq.embedded.topics= # comma-separated topics to create onstartup
  275. spring.hornetq.embedded.cluster-password= # customer password (randomlygenerated by default)
  276. # JMS (JmsProperties)
  277. spring.jms.jndi-name= # JNDI location of a JMS ConnectionFactory
  278. spring.jms.pub-sub-domain= # false for queue (default), true for topic
  279. # Email (MailProperties)
  280. spring.mail.host=smtp.acme.org # mail server host
  281. spring.mail.port= # mail server port
  282. spring.mail.username=
  283. spring.mail.password=
  284. spring.mail.default-encoding=UTF-8 # encoding to use for MimeMessages
  285. spring.mail.properties.*= # properties to set on the JavaMail session
  286. # SPRING BATCH (BatchDatabaseInitializer)
  287. spring.batch.job.names=job1,job2
  288. spring.batch.job.enabled=true
  289. spring.batch.initializer.enabled=true
  290. spring.batch.schema= # batch schema to load
  291. # AOP
  292. spring.aop.auto=
  293. spring.aop.proxy-target-class=
  294. # FILE ENCODING (FileEncodingApplicationListener)
  295. spring.mandatory-file-encoding=false
  296. # SPRING SOCIAL (SocialWebAutoConfiguration)
  297. spring.social.auto-connection-views=true # Set to true for defaultconnection views or false if you provide your own
  298. # SPRING SOCIAL FACEBOOK (FacebookAutoConfiguration)
  299. spring.social.facebook.app-id= # your application's Facebook App ID
  300. spring.social.facebook.app-secret= # your application's Facebook AppSecret
  301. # SPRING SOCIAL LINKEDIN (LinkedInAutoConfiguration)
  302. spring.social.linkedin.app-id= # your application's LinkedIn App ID
  303. spring.social.linkedin.app-secret= # your application's LinkedIn AppSecret
  304. # SPRING SOCIAL TWITTER (TwitterAutoConfiguration)
  305. spring.social.twitter.app-id= # your application's Twitter App ID
  306. spring.social.twitter.app-secret= # your application's Twitter AppSecret
  307. # SPRING MOBILE SITE PREFERENCE (SitePreferenceAutoConfiguration)
  308. spring.mobile.sitepreference.enabled=true # enabled by default
  309. # SPRING MOBILE DEVICE VIEWS(DeviceDelegatingViewResolverAutoConfiguration)
  310. spring.mobile.devicedelegatingviewresolver.enabled=true # disabled bydefault
  311. spring.mobile.devicedelegatingviewresolver.normal-prefix=
  312. spring.mobile.devicedelegatingviewresolver.normal-suffix=
  313. spring.mobile.devicedelegatingviewresolver.mobile-prefix=mobile/
  314. spring.mobile.devicedelegatingviewresolver.mobile-suffix=
  315. spring.mobile.devicedelegatingviewresolver.tablet-prefix=tablet/
  316. spring.mobile.devicedelegatingviewresolver.tablet-suffix=
  317. # ----------------------------------------
  318. # ACTUATOR PROPERTIES
  319. # ----------------------------------------
  320. # MANAGEMENT HTTP SERVER (ManagementServerProperties)
  321. management.port= # defaults to 'server.port'
  322. management.address= # bind to a specific NIC
  323. management.context-path= # default to '/'
  324. management.add-application-context-header= # default to true
  325. management.security.enabled=true # enable security
  326. management.security.role=ADMIN # role required to access the managementendpoint
  327. management.security.sessions=stateless # session creating policy to use(always, never, if_required, stateless)
  328. # PID FILE (ApplicationPidFileWriter)
  329. spring.pidfile= # Location of the PID file to write
  330. # ENDPOINTS (AbstractEndpoint subclasses)
  331. endpoints.autoconfig.id=autoconfig
  332. endpoints.autoconfig.sensitive=true
  333. endpoints.autoconfig.enabled=true
  334. endpoints.beans.id=beans
  335. endpoints.beans.sensitive=true
  336. endpoints.beans.enabled=true
  337. endpoints.configprops.id=configprops
  338. endpoints.configprops.sensitive=true
  339. endpoints.configprops.enabled=true
  340. endpoints.configprops.keys-to-sanitize=password,secret,key # suffix orregex
  341. endpoints.dump.id=dump
  342. endpoints.dump.sensitive=true
  343. endpoints.dump.enabled=true
  344. endpoints.env.id=env
  345. endpoints.env.sensitive=true
  346. endpoints.env.enabled=true
  347. endpoints.env.keys-to-sanitize=password,secret,key # suffix or regex
  348. endpoints.health.id=health
  349. endpoints.health.sensitive=true
  350. endpoints.health.enabled=true
  351. endpoints.health.mapping.*= # mapping of health statuses to HttpStatuscodes
  352. endpoints.health.time-to-live=1000
  353. endpoints.info.id=info
  354. endpoints.info.sensitive=false
  355. endpoints.info.enabled=true
  356. endpoints.mappings.enabled=true
  357. endpoints.mappings.id=mappings
  358. endpoints.mappings.sensitive=true
  359. endpoints.metrics.id=metrics
  360. endpoints.metrics.sensitive=true
  361. endpoints.metrics.enabled=true
  362. endpoints.shutdown.id=shutdown
  363. endpoints.shutdown.sensitive=true
  364. endpoints.shutdown.enabled=false
  365. endpoints.trace.id=trace
  366. endpoints.trace.sensitive=true
  367. endpoints.trace.enabled=true
  368. # HEALTH INDICATORS (previously health.*)
  369. management.health.db.enabled=true
  370. management.health.diskspace.enabled=true
  371. management.health.mongo.enabled=true
  372. management.health.rabbit.enabled=true
  373. management.health.redis.enabled=true
  374. management.health.solr.enabled=true
  375. management.health.diskspace.path=.
  376. management.health.diskspace.threshold=10485760
  377. management.health.status.order=DOWN, OUT_OF_SERVICE, UNKNOWN, UP
  378. # MVC ONLY ENDPOINTS
  379. endpoints.jolokia.path=jolokia
  380. endpoints.jolokia.sensitive=true
  381. endpoints.jolokia.enabled=true # when using Jolokia
  382. # JMX ENDPOINT (EndpointMBeanExportProperties)
  383. endpoints.jmx.enabled=true
  384. endpoints.jmx.domain= # the JMX domain, defaults to 'org.springboot'
  385. endpoints.jmx.unique-names=false
  386. endpoints.jmx.static-names=
  387. # JOLOKIA (JolokiaProperties)
  388. jolokia.config.*= # See Jolokia manual
  389. # REMOTE SHELL
  390. shell.auth=simple # jaas, key, simple, spring
  391. shell.command-refresh-interval=-1
  392. shell.command-path-patterns= # classpath*:/commands/**,classpath*:/crash/commands/**
  393. shell.config-path-patterns= # classpath*:/crash/*
  394. shell.disabled-commands=jpa*,jdbc*,jndi* # comma-separated list ofcommands to disable
  395. shell.disabled-plugins=false # don't expose plugins
  396. shell.ssh.enabled= # ssh settings ...
  397. shell.ssh.key-path=
  398. shell.ssh.port=
  399. shell.telnet.enabled= # telnet settings ...
  400. shell.telnet.port=
  401. shell.auth.jaas.domain= # authentication settings ...
  402. shell.auth.key.path=
  403. shell.auth.simple.user.name=
  404. shell.auth.simple.user.password=
  405. shell.auth.spring.roles=
  406. # GIT INFO
  407. spring.git.properties= # resource ref to generated git info propertiesfile

发表评论

表情:
评论列表 (有 0 条评论,322人围观)

还没有评论,来说两句吧...

相关阅读