Skip to content

Commit 372b6b6

Browse files
committed
Polishing.
Fix Javadoc URLs. See #3423
1 parent 0af3e0c commit 372b6b6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/main/antora/modules/ROOT/pages/repositories/custom-implementations.adoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ XML::
475475
[[repositories.customize-repository-factory]]
476476
== Customizing the Repository Factory
477477

478-
Customizing the javadoc:org.springframework.data.repository.core.support.RepositoryFactorySupport[repository factory] through javadoc:org.springframework.data.repository.core.support.RepositoryFactoryCustomizer[] provides direct access to components involved with repository instance creation.
478+
Customizing the {spring-data-commons-docs-url}/api/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.html[repository factory] through {spring-data-commons-docs-url}/api/java/org/springframework/data/repository/core/support/RepositoryFactoryCustomizer.html[`RepositoryFactoryCustomizer`] provides direct access to components involved with repository instance creation.
479479
This mechanism is useful when you want to adjust selected aspects of proxy creation without introducing a fully custom repository factory bean.
480480
The following example, demonstrates registering additional listeners and proxy advisors:
481481

@@ -495,7 +495,8 @@ Note that customizer beans are not applied automatically to prevent unwanted wir
495495
[[repositories.customize-repository-factory-bean]]
496496
== Customize the Repository Factory Bean
497497

498-
The most powerful approach to customize repository creation is to provide a custom repository factory bean, typically a subclass of javadoc:org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport[], javadoc:org.springframework.data.repository.core.support.TransactionalRepositoryFactoryBeanSupport[] or the store-specific repository factory bean.
498+
The most powerful approach to customize repository creation is to provide a custom repository factory bean, typically a subclass of {spring-data-commons-docs-url}/api/java/org/springframework/data/repository/core/support/RepositoryFactorySupport.html[`RepositoryFactorySupport`],
499+
{spring-data-commons-docs-url}/api/java/org/springframework/data/repository/core/support/TransactionalRepositoryFactoryBeanSupport.html[`TransactionalRepositoryFactoryBeanSupport`] or the store-specific repository factory bean.
499500

500501
Customizing the repository factory bean allows you to change repository creation entirely with full access to the underlying repository factory.
501502

@@ -504,7 +505,7 @@ Also, you need to take in consideration repository metadata derivation that is u
504505
The following summary outlines the key aspects:
505506

506507
* `repositoryBaseClass`: The repository base class defines which methods are implemented by the base class and which methods require additional handling through aspects or custom implementations.
507-
* `repositoryFragmentsContributor`: A javadoc:org.springframework.data.repository.core.support.RepositoryFragmentsContributor[] allows contributions to repository composition after all standard fragments have been collected.
508+
* `repositoryFragmentsContributor`: A {spring-data-commons-docs-url}/api/java/org/springframework/data/repository/core/support/RepositoryFragmentsContributor.html[`RepositoryFragmentsContributor`] allows contributions to repository composition after all standard fragments have been collected.
508509
Store modules use this mechanism to add features such as Querydsl or Query-by-Example support.
509510
It also serves as an SPI for third-party extensions.
510511
* `exposeMetadata`: Controls whether <<expose-repository-metadata,invocation metadata>> is available through `RepositoryMethodContext.getContext()`.

0 commit comments

Comments
 (0)