Skip to content

Commit 9ca15ee

Browse files
committed
Fix broken documentation links
See gh-19936
1 parent 3b57121 commit 9ca15ee

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

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
@@ -88,4 +88,4 @@ Finally, we have a few topics for more advanced users:
8888

8989
* *Spring Boot Applications Deployment:* <<deployment.adoc#cloud-deployment, Cloud Deployment>> | <<deployment.adoc#deployment-service, OS Service>>
9090
* *Build tool plugins:* <<build-tool-plugins.adoc#build-tool-plugins-maven-plugin, Maven>> | <<build-tool-plugins.adoc#build-tool-plugins-gradle-plugin, Gradle>>
91-
* *Appendix:* <<appendix-application-properties.adoc#common-application-properties,Application Properties>> | <<appendix-configuration-metadata.adoc#configuration-metadata,Configuration Metadata>> | <<appendix-auto-configuration-classes.adoc#auto-configuration-classes,Auto-configuration Classes>> | <<appendix-test-auto-configuration.adoc#test-auto-configuration,Test Auto-configuration Annotations>> | <<appendix-executable-jar-format.adoc#executable-jar,Executable Jars>> | <<appendix-dependency-versions.adoc#appendex-dependency-versions,Dependency Versions>>
91+
* *Appendix:* <<appendix-application-properties.adoc#common-application-properties,Application Properties>> | <<appendix-configuration-metadata.adoc#configuration-metadata,Configuration Metadata>> | <<appendix-auto-configuration-classes.adoc#auto-configuration-classes,Auto-configuration Classes>> | <<appendix-test-auto-configuration.adoc#test-auto-configuration,Test Auto-configuration Annotations>> | <<appendix-executable-jar-format.adoc#executable-jar,Executable Jars>> | <<appendix-dependency-versions.adoc#dependency-versions,Dependency Versions>>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2330,7 +2330,7 @@ See {spring-boot-autoconfigure-module-code}/groovy/template/GroovyTemplateAutoCo
23302330
[[howto-reload-fast-restart]]
23312331
=== Fast Application Restarts
23322332
The `spring-boot-devtools` module includes support for automatic application restarts.
2333-
While not as fast as technologies such as https://jrebel.com/software/jrebel/[JRebel] it is usually significantly faster than a "`cold start`".
2333+
While not as fast as technologies such as https://www.jrebel.com/products/jrebel[JRebel] it is usually significantly faster than a "`cold start`".
23342334
You should probably give it a try before investigating some of the more complex reload options discussed later in this document.
23352335

23362336
For more details, see the <<using-spring-boot.adoc#using-boot-devtools>> section.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Doing so consults Spring Boot's default dependency metadata to deduce the artifa
171171

172172
NOTE: The default metadata is tied to the version of the CLI that you use.
173173
It changes only when you move to a new version of the CLI, putting you in control of when the versions of your dependencies may change.
174-
A table showing the dependencies and their versions that are included in the default metadata can be found in the <<appendix-dependency-versions.adoc#appendix-dependency-versions,appendix>>.
174+
A table showing the dependencies and their versions that are included in the default metadata can be found in the <<appendix-dependency-versions.adoc#dependency-versions,appendix>>.
175175

176176

177177

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4478,7 +4478,7 @@ You can also inject an auto-configured `LdapTemplate` instance as you would with
44784478

44794479
[[boot-features-ldap-embedded]]
44804480
==== Embedded In-memory LDAP Server
4481-
For testing purposes, Spring Boot supports auto-configuration of an in-memory LDAP server from https://www.ldap.com/unboundid-ldap-sdk-for-java[UnboundID].
4481+
For testing purposes, Spring Boot supports auto-configuration of an in-memory LDAP server from https://ldap.com/unboundid-ldap-sdk-for-java/[UnboundID].
44824482
To configure the server, add a dependency to `com.unboundid:unboundid-ldapsdk` and declare a configprop:spring.ldap.embedded.base-dn[] property, as follows:
44834483

44844484
[source,properties,indent=0,configprops]
@@ -4901,7 +4901,7 @@ By default, ActiveMQ creates a destination if it does not yet exist so that dest
49014901

49024902
[[boot-features-artemis]]
49034903
==== Artemis Support
4904-
Spring Boot can auto-configure a `ConnectionFactory` when it detects that https://activemq.apache.org/artemis/[Artemis] is available on the classpath.
4904+
Spring Boot can auto-configure a `ConnectionFactory` when it detects that https://activemq.apache.org/components/artemis/[Artemis] is available on the classpath.
49054905
If the broker is present, an embedded broker is automatically started and configured (unless the mode property has been explicitly set).
49064906
The supported modes are `embedded` (to make explicit that an embedded broker is required and that an error should occur if the broker is not available on the classpath) and `native` (to connect to a broker using the `netty` transport protocol).
49074907
When the latter is configured, Spring Boot configures a `ConnectionFactory` that connects to a broker running on the local machine with the default settings.
@@ -5907,11 +5907,11 @@ If you have migrated your tests to JUnit 5, you should exclude JUnit 4 support,
59075907
=== Test Scope Dependencies
59085908
The `spring-boot-starter-test` "`Starter`" (in the `test` `scope`) contains the following provided libraries:
59095909

5910-
* https://junit.org/junit5[JUnit 5] (including the vintage engine for backward compatibility with JUnit 4): The de-facto standard for unit testing Java applications.
5910+
* https://junit.org/junit5/[JUnit 5] (including the vintage engine for backward compatibility with JUnit 4): The de-facto standard for unit testing Java applications.
59115911
* {spring-framework-docs}testing.html#integration-testing[Spring Test] & Spring Boot Test: Utilities and integration test support for Spring Boot applications.
5912-
* https://joel-costigliola.github.io/assertj/[AssertJ]: A fluent assertion library.
5912+
* https://assertj.github.io/doc/[AssertJ]: A fluent assertion library.
59135913
* https://github.com/hamcrest/JavaHamcrest[Hamcrest]: A library of matcher objects (also known as constraints or predicates).
5914-
* https://mockito.github.io[Mockito]: A Java mocking framework.
5914+
* https://site.mockito.org/[Mockito]: A Java mocking framework.
59155915
* https://github.com/skyscreamer/JSONassert[JSONassert]: An assertion library for JSON.
59165916
* https://github.com/jayway/JsonPath[JsonPath]: XPath for JSON.
59175917

@@ -7702,7 +7702,7 @@ If you need the `Mockk` equivalent of the Mockito specific <<boot-features-testi
77027702
[[boot-features-kotlin-resources-further-reading]]
77037703
==== Further reading
77047704
* {kotlin-docs}[Kotlin language reference]
7705-
* https://slack.kotlinlang.org/[Kotlin Slack] (with a dedicated #spring channel)
7705+
* https://kotlinlang.slack.com/[Kotlin Slack] (with a dedicated #spring channel)
77067706
* https://stackoverflow.com/questions/tagged/spring+kotlin[Stackoverflow with `spring` and `kotlin` tags]
77077707
* https://try.kotlinlang.org/[Try Kotlin in your browser]
77087708
* https://blog.jetbrains.com/kotlin/[Kotlin blog]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ You might also want to use the `JAVA_OPTS` operating system environment variable
622622
=== Hot Swapping
623623
Since Spring Boot applications are just plain Java applications, JVM hot-swapping should work out of the box.
624624
JVM hot swapping is somewhat limited with the bytecode that it can replace.
625-
For a more complete solution, https://jrebel.com/software/jrebel/[JRebel] can be used.
625+
For a more complete solution, https://www.jrebel.com/products/jrebel[JRebel] can be used.
626626

627627
The `spring-boot-devtools` module also includes support for quick application restarts.
628628
See the <<using-boot-devtools>> section later in this chapter and the <<howto.adoc#howto-hotswapping, Hot swapping "`How-to`">> for details.

0 commit comments

Comments
 (0)