Skip to content

Commit e234fb5

Browse files
izeyesnicoll
authored andcommitted
Fix broken links
Closes gh-10616
1 parent d974a74 commit e234fb5

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ content into your application; rather pick only the properties that you need.
11371137
endpoints.liquibase.jmx.enabled= # Expose the liquibase endpoint as a JMX MBean.
11381138
endpoints.liquibase.web.enabled= # Expose the liquibase endpoint as a Web endpoint.
11391139
1140-
# LOG FILE ENDPOINT ({sc-spring-boot-actuator}/logger/LogFileWebEndpoint.{sc-ext}[LogFileWebEndpoint])
1140+
# LOG FILE ENDPOINT ({sc-spring-boot-actuator}/logging/LogFileWebEndpoint.{sc-ext}[LogFileWebEndpoint])
11411141
endpoints.logfile.cache.time-to-live=0 # Maximum time in milliseconds that a response can be cached.
11421142
endpoints.logfile.enabled= # Enable the logfile endpoint.
11431143
endpoints.logfile.external-file= # External Logfile to be accessed. Can be used if the logfile is written by output redirect and not by the logging system itself.
@@ -1196,7 +1196,7 @@ content into your application; rather pick only the properties that you need.
11961196
endpoints.trace.jmx.enabled= # Expose the trace endpoint as a JMX MBean.
11971197
endpoints.trace.web.enabled= # Expose the trace endpoint as a Web endpoint.
11981198
1199-
# MANAGEMENT HTTP SERVER ({sc-spring-boot-actuator}/autoconfigure/web/ManagementServerProperties.{sc-ext}[ManagementServerProperties])
1199+
# MANAGEMENT HTTP SERVER ({sc-spring-boot-actuator-autoconfigure}/web/server/ManagementServerProperties.{sc-ext}[ManagementServerProperties])
12001200
management.server.add-application-context-header=false # Add the "X-Application-Context" HTTP header in each response. Requires a custom management.server.port.
12011201
management.server.address= # Network address that the management endpoints should bind to. Requires a custom management.server.port.
12021202
management.server.context-path= # Management endpoint context-path. For instance `/actuator`. Requires a custom management.server.port
@@ -1221,7 +1221,7 @@ content into your application; rather pick only the properties that you need.
12211221
management.cloudfoundry.enabled=true # Enable extended Cloud Foundry actuator endpoints.
12221222
management.cloudfoundry.skip-ssl-validation=false # Skip SSL verification for Cloud Foundry actuator endpoint security calls.
12231223
1224-
# ENDPOINTS CORS CONFIGURATION ({sc-spring-boot-actuator}/autoconfigure/endpoint/infrastructure/CorsEndpointProperties.{sc-ext}[CorsEndpointProperties])
1224+
# ENDPOINTS CORS CONFIGURATION ({sc-spring-boot-actuator-autoconfigure}/endpoint/web/servlet/CorsEndpointProperties.{sc-ext}[CorsEndpointProperties])
12251225
management.endpoints.cors.allow-credentials= # Set whether credentials are supported. When not set, credentials are not supported.
12261226
management.endpoints.cors.allowed-headers= # Comma-separated list of headers to allow in a request. '*' allows all headers.
12271227
management.endpoints.cors.allowed-methods= # Comma-separated list of methods to allow. '*' allows all methods. When not set, defaults to GET.
@@ -1232,7 +1232,7 @@ content into your application; rather pick only the properties that you need.
12321232
# ENDPOINTS JMX CONFIGURATION ({sc-spring-boot-actuator}/autoconfigure/endpoint/ManagementEndpointProperties.{sc-ext}[JmxEndpointExporterProperties])
12331233
management.endpoints.web.base-path # Base path for Web endpoints. Relative to server.context-path or management.server.context-path if management.server.port is configured.
12341234
1235-
# ENDPOINTS JMX CONFIGURATION ({sc-spring-boot-actuator}/autoconfigure/endpoint/infrastructure/JmxEndpointExporterProperties.{sc-ext}[JmxEndpointExporterProperties])
1235+
# ENDPOINTS JMX CONFIGURATION ({sc-spring-boot-actuator-autoconfigure}/endpoint/jmx/JmxEndpointExporterProperties.{sc-ext}[JmxEndpointExporterProperties])
12361236
management.endpoints.jmx.domain=org.springframework.boot # Endpoints JMX domain name. Fallback to 'spring.jmx.default-domain' if set.
12371237
management.endpoints.jmx.static-names=false # Additional static properties to append to all ObjectNames of MBeans representing Endpoints.
12381238
management.endpoints.jmx.unique-names=false # Ensure that ObjectNames are modified in case of conflict.
@@ -1259,19 +1259,19 @@ content into your application; rather pick only the properties that you need.
12591259
management.health.status.http-mapping= # Mapping of health statuses to HTTP status codes. By default, registered health statuses map to sensible defaults (i.e. UP maps to 200).
12601260
management.health.status.order=DOWN, OUT_OF_SERVICE, UP, UNKNOWN # Comma-separated list of health statuses in order of severity.
12611261
1262-
# INFO CONTRIBUTORS ({sc-spring-boot-actuator}/autoconfigure/info/InfoContributorProperties.{sc-ext}[InfoContributorProperties])
1262+
# INFO CONTRIBUTORS ({sc-spring-boot-actuator-autoconfigure}/info/InfoContributorProperties.{sc-ext}[InfoContributorProperties])
12631263
management.info.build.enabled=true # Enable build info.
12641264
management.info.defaults.enabled=true # Enable default info contributors.
12651265
management.info.env.enabled=true # Enable environment info.
12661266
management.info.git.enabled=true # Enable git info.
12671267
management.info.git.mode=simple # Mode to use to expose git information.
12681268
1269-
# JOLOKIA ({sc-spring-boot-actuator}/autoconfigure/jolokia/JolokiaProperties.{sc-ext}[JolokiaProperties])
1269+
# JOLOKIA ({sc-spring-boot-actuator-autoconfigure}/jolokia/JolokiaProperties.{sc-ext}[JolokiaProperties])
12701270
management.jolokia.config.*= # Jolokia settings. See the Jolokia manual for details.
12711271
management.jolokia.enabled=false # Enable Jolokia.
12721272
management.jolokia.path=/jolokia # Path at which Jolokia will be available.
12731273
1274-
# TRACING ({sc-spring-boot-actuator}/trace/TraceProperties.{sc-ext}[TraceProperties])
1274+
# TRACING ({sc-spring-boot-actuator-autoconfigure}/trace/TraceEndpointProperties.{sc-ext}[TraceEndpointProperties])
12751275
management.trace.filter.enabled=true # Enable the trace servlet filter.
12761276
management.trace.include=request-headers,response-headers,cookies,errors # Items to be included in the trace.
12771277

spring-boot-project/spring-boot-docs/src/main/asciidoc/documentation-overview.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ got you covered>>.
8282
* *Packaging your app:*
8383
<<using-spring-boot.adoc#using-boot-packaging-for-production, Production jars>>
8484
* *Spring Boot CLI:*
85-
<<using-spring-boot-cli.adoc#cli, Using the CLI>>
85+
<<spring-boot-cli.adoc#cli, Using the CLI>>
8686

8787

8888

spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1805,7 +1805,7 @@ then you need to define your own `@Bean` of type `LocalEntityManagerFactoryBean`
18051805
id '`entityManagerFactory`', and set the persistence unit name there.
18061806

18071807
See
1808-
https://github.com/spring-projects/spring-boot/blob/master/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaBaseConfiguration.java[`JpaBaseConfiguration`]
1808+
{sc-spring-boot-autoconfigure}/orm/jpa/JpaBaseConfiguration.{sc-ext}[`JpaBaseConfiguration`]
18091809
for the default settings.
18101810

18111811

@@ -2121,7 +2121,7 @@ an internal network for management and an external one for user applications) yo
21212121
also set `management.server.address` to a valid IP address that the server is able to bind to.
21222122

21232123
For more detail look at the
2124-
{sc-spring-boot-actuator}/autoconfigure/web/ManagementServerProperties.{sc-ext}[`ManagementServerProperties`]
2124+
{sc-spring-boot-actuator-autoconfigure}/web/server/ManagementServerProperties.{sc-ext}[`ManagementServerProperties`]
21252125
source code and
21262126
_<<production-ready-features.adoc#production-ready-customizing-management-server-port>>_
21272127
in the '`Production-ready features`' section.

spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ permits `GET` and `POST` calls from the `example.com` domain:
261261
management.endpoints.cors.allowed-methods=GET,POST
262262
----
263263

264-
TIP: Check {sc-spring-boot-actuator}/autoconfigure/endpoint/infrastructure/CorsEndpointProperties.{sc-ext}[CorsEndpointProperties]
264+
TIP: Check {sc-spring-boot-actuator-autoconfigure}/endpoint/web/servlet/CorsEndpointProperties.{sc-ext}[CorsEndpointProperties]
265265
for a complete list of options.
266266

267267

@@ -307,34 +307,34 @@ The following `HealthIndicators` are auto-configured by Spring Boot when appropr
307307
|===
308308
|Name |Description
309309

310-
|{sc-spring-boot-actuator}/health/CassandraHealthIndicator.{sc-ext}[`CassandraHealthIndicator`]
310+
|{sc-spring-boot-actuator}/cassandra/CassandraHealthIndicator.{sc-ext}[`CassandraHealthIndicator`]
311311
|Checks that a Cassandra database is up.
312312

313-
|{sc-spring-boot-actuator}/health/DiskSpaceHealthIndicator.{sc-ext}[`DiskSpaceHealthIndicator`]
313+
|{sc-spring-boot-actuator}/system/DiskSpaceHealthIndicator.{sc-ext}[`DiskSpaceHealthIndicator`]
314314
|Checks for low disk space.
315315

316-
|{sc-spring-boot-actuator}/health/DataSourceHealthIndicator.{sc-ext}[`DataSourceHealthIndicator`]
316+
|{sc-spring-boot-actuator}/jdbc/DataSourceHealthIndicator.{sc-ext}[`DataSourceHealthIndicator`]
317317
|Checks that a connection to `DataSource` can be obtained.
318318

319-
|{sc-spring-boot-actuator}/health/ElasticsearchHealthIndicator.{sc-ext}[`ElasticsearchHealthIndicator`]
319+
|{sc-spring-boot-actuator}/elasticsearch/ElasticsearchHealthIndicator.{sc-ext}[`ElasticsearchHealthIndicator`]
320320
|Checks that an Elasticsearch cluster is up.
321321

322-
|{sc-spring-boot-actuator}/health/JmsHealthIndicator.{sc-ext}[`JmsHealthIndicator`]
322+
|{sc-spring-boot-actuator}/jms/JmsHealthIndicator.{sc-ext}[`JmsHealthIndicator`]
323323
|Checks that a JMS broker is up.
324324

325-
|{sc-spring-boot-actuator}/health/MailHealthIndicator.{sc-ext}[`MailHealthIndicator`]
325+
|{sc-spring-boot-actuator}/mail/MailHealthIndicator.{sc-ext}[`MailHealthIndicator`]
326326
|Checks that a mail server is up.
327327

328-
|{sc-spring-boot-actuator}/health/MongoHealthIndicator.{sc-ext}[`MongoHealthIndicator`]
328+
|{sc-spring-boot-actuator}/mongo/MongoHealthIndicator.{sc-ext}[`MongoHealthIndicator`]
329329
|Checks that a Mongo database is up.
330330

331-
|{sc-spring-boot-actuator}/health/RabbitHealthIndicator.{sc-ext}[`RabbitHealthIndicator`]
331+
|{sc-spring-boot-actuator}/amqp/RabbitHealthIndicator.{sc-ext}[`RabbitHealthIndicator`]
332332
|Checks that a Rabbit server is up.
333333

334-
|{sc-spring-boot-actuator}/health/RedisHealthIndicator.{sc-ext}[`RedisHealthIndicator`]
334+
|{sc-spring-boot-actuator}/redis/RedisHealthIndicator.{sc-ext}[`RedisHealthIndicator`]
335335
|Checks that a Redis server is up.
336336

337-
|{sc-spring-boot-actuator}/health/SolrHealthIndicator.{sc-ext}[`SolrHealthIndicator`]
337+
|{sc-spring-boot-actuator}/solr/SolrHealthIndicator.{sc-ext}[`SolrHealthIndicator`]
338338
|Checks that a Solr server is up.
339339
|===
340340

0 commit comments

Comments
 (0)