diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc index 185102ef70..6e57d8bbb3 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -2567,11 +2567,9 @@ NOTE: Doing so only works if your Maven project inherits (directly or indirectly own `dependencyManagement` section with `import`, 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]] diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/index.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/index.adoc index ab51e6bcb4..fa445e6b57 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/index.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/index.adoc @@ -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 diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc index e7ad3cb00c..658c5544f2 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc @@ -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 diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index bdee083f4b..e76cfde656 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -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): . <> @@ -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]]