Closes gh-4069
This commit is contained in:
izeye
2015-10-01 14:12:10 +09:00
committed by Stephane Nicoll
parent db0212b834
commit 5b211706c0
9 changed files with 12 additions and 12 deletions

View File

@@ -197,7 +197,7 @@ content into your application; rather pick only the properties that you need.
spring.jackson.parser.*= # see Jackson's JsonParser.Feature
spring.jackson.serialization.*= # see Jackson's SerializationFeature
spring.jackson.serialization-inclusion= # Controls the inclusion of properties during serialization (see Jackson's JsonInclude.Include)
spring.jackson.time-zone # Time zone used when formatting dates. Configured using any recognized time zone identifier, for example "America/Los_Angeles" or "GMT+10"
spring.jackson.time-zone= # Time zone used when formatting dates. Configured using any recognized time zone identifier, for example "America/Los_Angeles" or "GMT+10"
# THYMELEAF ({sc-spring-boot-autoconfigure}/thymeleaf/ThymeleafAutoConfiguration.{sc-ext}[ThymeleafAutoConfiguration])
spring.thymeleaf.check-template-location=true

View File

@@ -2574,7 +2574,7 @@ server using the URL `mongodb://localhost/test`:
}
----
You can set `spring.data.mongodb.uri` property to change the `url` and configure
You can set `spring.data.mongodb.uri` property to change the URL and configure
additional settings such as the _replica set_:
[source,properties,indent=0]
@@ -2990,7 +2990,7 @@ a `HazelcastInstance` has been auto-configured, it is automatically wrapped in a
`CacheManager`.
If for some reason you need a different `HazelcastInstance` for caching, you can
request Spring Boot to create a separate one that will only used by the
request Spring Boot to create a separate one that will be only used by the
`CacheManager`:
[source,properties,indent=0]

View File

@@ -622,7 +622,7 @@ you can use the exclude attribute of `@EnableAutoConfiguration` to disable them.
If the class is not on the classpath, you can use the `excludeName` attribute of
the annotation and specify the fully qualified name instead. Finally, you can also
control the list of auto-configuration classes to excludes via the
control the list of auto-configuration classes to exclude via the
`spring.autoconfigure.exclude` property.
TIP: You can define exclusions both at the annotation level and using the property.