@@ -96,10 +96,12 @@ content into your application; rather pick only the properties that you need.
96
96
spring.mvc.ignore-default-model-on-redirect=true # If the the content of the "default" model should be ignored redirects
97
97
spring.view.prefix= # MVC view prefix
98
98
spring.view.suffix= # ... and suffix
99
+
100
+ # SPRING RESOURCES HANDLING ({sc-spring-boot-autoconfigure}/web/ResourceProperties.{sc-ext}[ResourceProperties])
99
101
spring.resources.cache-period= # cache timeouts in headers sent to browser
100
102
spring.resources.add-mappings=true # if default mappings should be added
101
103
102
- # SPRING HATEOS ({sc-spring-boot-autoconfigure}/hateoas/HateoasProperties.{sc-ext}[HateoasProperties])
104
+ # SPRING HATEOAS ({sc-spring-boot-autoconfigure}/hateoas/HateoasProperties.{sc-ext}[HateoasProperties])
103
105
spring.hateoas.apply-to-primary-object-mapper=true # if the primary mapper should also be configured
104
106
105
107
# HTTP encoding ({sc-spring-boot-autoconfigure}/web/HttpEncodingProperties.{sc-ext}[HttpEncodingProperties])
@@ -215,7 +217,7 @@ content into your application; rather pick only the properties that you need.
215
217
security.headers.content-type=false
216
218
security.headers.hsts=all # none / domain / all
217
219
security.sessions=stateless # always / never / if_required / stateless
218
- security.ignored=false
220
+ security.ignored= # Comma-separated list of paths to exclude from the default secured paths
219
221
220
222
# DATASOURCE ({sc-spring-boot-autoconfigure}/jdbc/DataSourceAutoConfiguration.{sc-ext}[DataSourceAutoConfiguration] & {sc-spring-boot-autoconfigure}/jdbc/DataSourceProperties.{sc-ext}[DataSourceProperties])
221
223
spring.datasource.name= # name of the data source
@@ -244,7 +246,7 @@ content into your application; rather pick only the properties that you need.
244
246
spring.datasource.max-wait=
245
247
spring.datasource.jmx-enabled=false # Export JMX MBeans (if supported)
246
248
247
- # DATASOURCE ({sc-spring-boot-autoconfigure}/dao/PersistenceExceptionTranslationAutoConfiguration.{sc-ext}[PersistenceExceptionTranslationAutoConfiguration]
249
+ # DAO ({sc-spring-boot-autoconfigure}/dao/PersistenceExceptionTranslationAutoConfiguration.{sc-ext}[PersistenceExceptionTranslationAutoConfiguration])
248
250
spring.dao.exceptiontranslation.enabled=true
249
251
250
252
# MONGODB ({sc-spring-boot-autoconfigure}/mongo/MongoProperties.{sc-ext}[MongoProperties])
@@ -339,17 +341,17 @@ content into your application; rather pick only the properties that you need.
339
341
spring.jta.bitronix.datasource.unique-name=dataSource # The unique name used to identify the resource during recovery
340
342
spring.jta.bitronix.datasource.use-tm-join=true Whether or not TMJOIN should be used when starting XAResources
341
343
342
- # SOLR ({sc-spring-boot-autoconfigure}/solr/SolrProperties.{sc-ext}[SolrProperties} ])
344
+ # SOLR ({sc-spring-boot-autoconfigure}/solr/SolrProperties.{sc-ext}[SolrProperties])
343
345
spring.data.solr.host=http://127.0.0.1:8983/solr
344
346
spring.data.solr.zk-host=
345
347
spring.data.solr.repositories.enabled=true # if spring data repository support is enabled
346
348
347
- # ELASTICSEARCH ({sc-spring-boot-autoconfigure}/elasticsearch/ElasticsearchProperties.{sc-ext}[ElasticsearchProperties} ])
349
+ # ELASTICSEARCH ({sc-spring-boot-autoconfigure}/elasticsearch/ElasticsearchProperties.{sc-ext}[ElasticsearchProperties])
348
350
spring.data.elasticsearch.cluster-name= # The cluster name (defaults to elasticsearch)
349
351
spring.data.elasticsearch.cluster-nodes= # The address(es) of the server node (comma-separated; if not specified starts a client node)
350
352
spring.data.elasticsearch.repositories.enabled=true # if spring data repository support is enabled
351
353
352
- # DATA RESET ({spring-data-rest-javadoc}/core/config/RepositoryRestConfiguration.{dc-ext}[RepositoryRestConfiguration} ])
354
+ # DATA REST ({spring-data-rest-javadoc}/core/config/RepositoryRestConfiguration.{dc-ext}[RepositoryRestConfiguration])
353
355
spring.data.rest.base-uri= # base URI against which the exporter should calculate its links
354
356
355
357
# FLYWAY ({sc-spring-boot-autoconfigure}/flyway/FlywayProperties.{sc-ext}[FlywayProperties])
0 commit comments