Polish
This commit is contained in:
parent
0e7dbd59b2
commit
c6a1fc93bd
|
|
@ -2567,11 +2567,9 @@ NOTE: Doing so only works if your Maven project inherits (directly or indirectly
|
|||
own `dependencyManagement` section with `<scope>import</scope>`, you have to redefine
|
||||
the artifact yourself instead of overriding the property.
|
||||
|
||||
WARNING: Each Spring Boot release is designed and tested against a specific set of
|
||||
WARNING: Each Spring Boot release is designed and tested against this specific set of
|
||||
third-party dependencies. Overriding versions may cause compatibility issues.
|
||||
|
||||
// TODO: Where can the reader see those dependencies?
|
||||
|
||||
|
||||
|
||||
[[howto-create-an-executable-jar-with-maven]]
|
||||
|
|
|
|||
|
|
@ -49,7 +49,6 @@ Phillip Webb; Dave Syer; Josh Long; Stéphane Nicoll; Rob Winch; Andy Wilkinson;
|
|||
:spring-security-oauth2-reference: http://projects.spring.io/spring-security-oauth/docs/oauth2.html
|
||||
:spring-webservices-reference: http://docs.spring.io/spring-ws/docs/{spring-webservices-docs-version}/reference/
|
||||
:spring-javadoc: http://docs.spring.io/spring/docs/{spring-docs-version}/javadoc-api/org/springframework
|
||||
:spring-framework-javadoc: https://docs.spring.io/spring-framework/docs/{spring-docs-version}/javadoc-api/org/springframework/
|
||||
:spring-amqp-javadoc: http://docs.spring.io/spring-amqp/docs/current/api/org/springframework/amqp
|
||||
:spring-batch-javadoc: http://docs.spring.io/spring-batch/apidocs/org/springframework/batch
|
||||
:spring-data-javadoc: http://docs.spring.io/spring-data/jpa/docs/current/api/org/springframework/data/jpa
|
||||
|
|
|
|||
|
|
@ -92,9 +92,6 @@ classes and the reasons why they did or did not match.
|
|||
|`loggers`
|
||||
|Shows and modifies the configuration of loggers in the application.
|
||||
|
||||
// TODO "and modifies"? Why would the endpoint modify the configuration? Do we mean "shows
|
||||
// any modifications"?
|
||||
|
||||
|`liquibase`
|
||||
|Shows any Liquibase database migrations that have been applied.
|
||||
|
||||
|
|
@ -1135,8 +1132,6 @@ implementing a lock-out policy based on authentication failures. To customize pu
|
|||
security events, you can provide your own implementations of
|
||||
`AbstractAuthenticationAuditListener` and `AbstractAuthorizationAuditListener`.
|
||||
|
||||
// TODO A sample showing how to customize published security events would be good.
|
||||
|
||||
You can also use the audit services for your own business events. To do so, either inject
|
||||
the existing `AuditEventRepository` into your own components and use that directly or
|
||||
publish an `AuditApplicationEvent` with the Spring `ApplicationEventPublisher` (by
|
||||
|
|
|
|||
|
|
@ -4383,7 +4383,6 @@ TIP: It is also possible to transparently
|
|||
{spring-reference}integration.html#cache-annotations-put[update] or
|
||||
{spring-reference}integration.html#cache-annotations-evict[evict] data from the cache.
|
||||
|
||||
// TODO Updating and evicting should be a section (or two) with samples.
|
||||
|
||||
NOTE: If you use the cache infrastructure with beans that are not interface-based, make
|
||||
sure to enable the `proxyTargetClass` attribute of `@EnableCaching`.
|
||||
|
|
@ -4396,7 +4395,7 @@ materialized by the `org.springframework.cache.Cache` and
|
|||
|
||||
If you have not defined a bean of type `CacheManager` or a `CacheResolver` named
|
||||
`cacheResolver` (see
|
||||
{spring-framework-javadoc}cache/annotation/CachingConfigurer.html[`CachingConfigurer`]),
|
||||
{spring-javadoc}cache/annotation/CachingConfigurer.html[`CachingConfigurer`]),
|
||||
Spring Boot tries to detect the following providers (in the indicated order):
|
||||
|
||||
. <<boot-features-caching-provider-generic,Generic>>
|
||||
|
|
@ -5738,9 +5737,6 @@ as constraints or predicates).
|
|||
We generally find these common libraries to be useful when writing tests. If these
|
||||
libraries do not suit your needs, you can add additional test dependencies of your own.
|
||||
|
||||
// TODO Describe how to add additional test dependencies. That content should be a new
|
||||
// heading, with a link here.
|
||||
|
||||
|
||||
|
||||
[[boot-features-testing-spring-applications]]
|
||||
|
|
@ -6796,9 +6792,6 @@ TIP: If this is not an option for you, you can create a `@SpringBootConfiguratio
|
|||
somewhere in the hierarchy of your test so that it is used instead. Alternatively, you
|
||||
can specify a source for your test, which disables the behavior of finding a default one.
|
||||
|
||||
// TODO We should describe how to specify a test in a new section and link to it from this
|
||||
// tip.
|
||||
|
||||
|
||||
|
||||
[[boot-features-testing-spring-boot-applications-with-spock]]
|
||||
|
|
|
|||
Loading…
Reference in New Issue