Skip to content

Commit 723b168

Browse files
Update document
1 parent 3493095 commit 723b168

File tree

6 files changed

+9
-3
lines changed

6 files changed

+9
-3
lines changed

buildSrc/src/main/resources/org/springframework/boot/build/antora/antora-asciidoc-attributes.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ url-native-build-tools-docs-gradle-plugin={url-native-build-tools-docs}/gradle-p
3333
url-native-build-tools-docs-maven-plugin={url-native-build-tools-docs}/maven-plugin.html
3434
url-paketo-docs=https://paketo.io/docs
3535
url-paketo-docs-java-buildpack={url-paketo-docs}/buildpacks/language-family-buildpacks/java
36-
url-spring-boot-for-apache-geode-docs=https://docs.spring.io/spring-boot-data-geode-build/2.0.x/reference/html5
36+
url-spring-boot-for-apache-geode-docs=https://docs.spring.io/spring-data/geode/docs/current/reference/html/
3737
url-spring-boot-for-apache-geode-site=https://github.com/spring-projects/spring-boot-data-geode
3838
url-spring-data-cassandra-javadoc=https://docs.spring.io/spring-data/cassandra/docs/{version-spring-data-cassandra-javadoc}/api
3939
url-spring-data-cassandra-site=https://spring.io/projects/spring-data-cassandra

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/io/caching.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In a nutshell, to add caching to an operation of your service add the relevant a
1313
include-code::MyMathService[]
1414

1515
This example demonstrates the use of caching on a potentially costly operation.
16-
Before invoking `computePiDecimal`, the abstraction looks for an entry in the `piDecimals` cache that matches the `i` argument.
16+
Before invoking `computePiDecimal`, the abstraction looks for an entry in the `piDecimals` cache that matches the `precision` argument.
1717
If an entry is found, the content in the cache is immediately returned to the caller, and the method is not invoked.
1818
Otherwise, the method is invoked, and the cache is updated before returning the value.
1919

spring-boot-project/spring-boot-docs/src/docs/antora/modules/reference/pages/messaging/amqp.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ The following sample component creates a listener endpoint on the `someQueue` qu
110110

111111
include-code::MyBean[]
112112

113-
TIP: See javadoc:{url-spring-amqp-javadoc}/org.springframework.amqp.rabbit.annotation.EnableRabbit.html[format=annotation] for more details.
113+
TIP: See javadoc:{url-spring-amqp-javadoc}/org.springframework.amqp.rabbit.annotation.EnableRabbit[format=annotation] for more details.
114114

115115
If you need to create more `RabbitListenerContainerFactory` instances or if you want to override the default, Spring Boot provides a `SimpleRabbitListenerContainerFactoryConfigurer` and a `DirectRabbitListenerContainerFactoryConfigurer` that you can use to initialize a `SimpleRabbitListenerContainerFactory` and a `DirectRabbitListenerContainerFactory` with the same settings as the factories used by the auto-configuration.
116116

spring-boot-project/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/io/jta/mixingxaandnonxaconnections/nonxa/MyBean.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@
1414
* limitations under the License.
1515
*/
1616

17+
// tag::code[]
1718
package org.springframework.boot.docs.io.jta.mixingxaandnonxaconnections.nonxa
1819

1920
import jakarta.jms.ConnectionFactory
2021
import org.springframework.beans.factory.annotation.Qualifier
2122

2223
@Suppress("UNUSED_PARAMETER")
2324
class MyBean(@Qualifier("nonXaJmsConnectionFactory") connectionFactory: ConnectionFactory?)
25+
// end::code[]

spring-boot-project/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/io/jta/mixingxaandnonxaconnections/primary/MyBean.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414
* limitations under the License.
1515
*/
1616

17+
// tag::code[]
1718
package org.springframework.boot.docs.io.jta.mixingxaandnonxaconnections.primary
1819

1920
import jakarta.jms.ConnectionFactory
2021

2122
@Suppress("UNUSED_PARAMETER")
2223
class MyBean(connectionFactory: ConnectionFactory?)
24+
// end::code[]

spring-boot-project/spring-boot-docs/src/main/kotlin/org/springframework/boot/docs/io/jta/mixingxaandnonxaconnections/xa/MyBean.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@
1414
* limitations under the License.
1515
*/
1616

17+
// tag::code[]
1718
package org.springframework.boot.docs.io.jta.mixingxaandnonxaconnections.xa
1819

1920
import jakarta.jms.ConnectionFactory
2021
import org.springframework.beans.factory.annotation.Qualifier
2122

2223
@Suppress("UNUSED_PARAMETER")
2324
class MyBean(@Qualifier("xaJmsConnectionFactory") connectionFactory: ConnectionFactory?)
25+
// end::code[]

0 commit comments

Comments
 (0)