mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 20:19:06 +00:00
Link to spring spring-data-relational documentation
Replace spring-data-jdbc and spring-data-r2dbc links with spring-data-relational. Closes gh-51795
This commit is contained in:
+3
-3
@@ -335,7 +335,7 @@ If you're using Spring Data JDBC with xref:packaging/aot.adoc[ahead-of-time proc
|
||||
To prevent the need for a DB connection during AOT processing, define a `JdbcDialect` bean that's appropriate for your application's database.
|
||||
For example, if you're using Postgres, define a `JdbcPostgresDialect` bean.
|
||||
|
||||
TIP: For complete details of Spring Data JDBC, see the {url-spring-data-jdbc-docs}[reference documentation].
|
||||
TIP: For complete details of Spring Data JDBC, see the {url-spring-data-relational-docs}[reference documentation].
|
||||
|
||||
|
||||
|
||||
@@ -544,7 +544,7 @@ include-code::MyBean[]
|
||||
[[data.sql.r2dbc.repositories]]
|
||||
=== Spring Data R2DBC Repositories
|
||||
|
||||
https://spring.io/projects/spring-data-r2dbc[Spring Data R2DBC] repositories are interfaces that you can define to access data.
|
||||
https://spring.io/projects/spring-data-relational[Spring Data R2DBC] repositories are interfaces that you can define to access data.
|
||||
Queries are created automatically from your method names.
|
||||
For example, a `CityRepository` interface might declare a `findAllByState(String state)` method to find all the cities in a given state.
|
||||
|
||||
@@ -557,4 +557,4 @@ The following example shows a typical Spring Data repository interface definitio
|
||||
|
||||
include-code::CityRepository[]
|
||||
|
||||
TIP: We have barely scratched the surface of Spring Data R2DBC. For complete details, see the {url-spring-data-r2dbc-docs}[Spring Data R2DBC reference documentation].
|
||||
TIP: We have barely scratched the surface of Spring Data R2DBC. For complete details, see the {url-spring-data-relational-docs}[Spring Data R2DBC reference documentation].
|
||||
|
||||
@@ -2593,15 +2593,6 @@ bom {
|
||||
.formatted(version.forAntora()))
|
||||
releaseNotes("https://github.com/spring-projects/spring-data-envers/releases/tag/{version}")
|
||||
}
|
||||
module("spring-data-jdbc") {
|
||||
site("https://spring.io/projects/spring-data-jdbc")
|
||||
github("https://github.com/spring-projects/spring-data-jdbc")
|
||||
javadoc(version -> "https://docs.spring.io/spring-data-jdbc/docs/%s/api"
|
||||
.formatted(version.forMajorMinorGeneration()), "org.springframework.data.jdbc")
|
||||
docs(version -> "https://docs.spring.io/spring-data-jdbc/reference/%s"
|
||||
.formatted(version.forAntora()))
|
||||
releaseNotes("https://github.com/spring-projects/spring-data-jdbc/releases/tag/{version}")
|
||||
}
|
||||
module("spring-data-jpa") {
|
||||
site("https://spring.io/projects/spring-data-jpa")
|
||||
github("https://github.com/spring-projects/spring-data-jpa")
|
||||
@@ -2638,14 +2629,15 @@ bom {
|
||||
.formatted(version.forAntora()))
|
||||
releaseNotes("https://github.com/spring-projects/spring-data-neo4j/releases/tag/{version}")
|
||||
}
|
||||
module("spring-data-r2dbc") {
|
||||
site("https://spring.io/projects/spring-data-r2dbc")
|
||||
github("https://github.com/spring-projects/spring-data-r2dbc")
|
||||
javadoc(version -> "https://docs.spring.io/spring-data-r2dbc/docs/%s/api"
|
||||
.formatted(version.forMajorMinorGeneration()), "org.springframework.data.r2dbc")
|
||||
docs(version -> "https://docs.spring.io/spring-data-r2dbc/reference/%s"
|
||||
module("spring-data-relational") {
|
||||
site("https://spring.io/projects/spring-data-relational")
|
||||
github("https://github.com/spring-projects/spring-data-relational")
|
||||
javadoc(version -> "https://docs.spring.io/spring-data-relational/docs/%s/api"
|
||||
.formatted(version.forMajorMinorGeneration()),
|
||||
"org.springframework.data.jdbc", "org.springframework.data.r2dbc")
|
||||
docs(version -> "https://docs.spring.io/spring-data-relational/reference/%s"
|
||||
.formatted(version.forAntora()))
|
||||
releaseNotes("https://github.com/spring-projects/spring-data-r2dbc/releases/tag/{version}")
|
||||
releaseNotes("https://github.com/spring-projects/spring-data-relational/releases/tag/{version}")
|
||||
}
|
||||
module("spring-data-redis") {
|
||||
site("https://spring.io/projects/spring-data-redis")
|
||||
|
||||
Reference in New Issue
Block a user