You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-cli.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -171,7 +171,7 @@ Doing so consults Spring Boot's default dependency metadata to deduce the artifa
171
171
172
172
NOTE: The default metadata is tied to the version of the CLI that you use.
173
173
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>>.
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4478,7 +4478,7 @@ You can also inject an auto-configured `LdapTemplate` instance as you would with
4478
4478
4479
4479
[[boot-features-ldap-embedded]]
4480
4480
==== 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].
4482
4482
To configure the server, add a dependency to `com.unboundid:unboundid-ldapsdk` and declare a configprop:spring.ldap.embedded.base-dn[] property, as follows:
4483
4483
4484
4484
[source,properties,indent=0,configprops]
@@ -4901,7 +4901,7 @@ By default, ActiveMQ creates a destination if it does not yet exist so that dest
4901
4901
4902
4902
[[boot-features-artemis]]
4903
4903
==== 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.
4905
4905
If the broker is present, an embedded broker is automatically started and configured (unless the mode property has been explicitly set).
4906
4906
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).
4907
4907
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,
5907
5907
=== Test Scope Dependencies
5908
5908
The `spring-boot-starter-test` "`Starter`" (in the `test` `scope`) contains the following provided libraries:
5909
5909
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.
5911
5911
* {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.
5913
5913
* 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.
5915
5915
* https://github.com/skyscreamer/JSONassert[JSONassert]: An assertion library for JSON.
5916
5916
* https://github.com/jayway/JsonPath[JsonPath]: XPath for JSON.
5917
5917
@@ -7702,7 +7702,7 @@ If you need the `Mockk` equivalent of the Mockito specific <<boot-features-testi
0 commit comments