526 lines
25 KiB
Plaintext
526 lines
25 KiB
Plaintext
[[data.sql]]
|
|
== SQL Databases
|
|
The {spring-framework}[Spring Framework] provides extensive support for working with SQL databases, from direct JDBC access using `JdbcClient` or `JdbcTemplate` to complete "`object relational mapping`" technologies such as Hibernate.
|
|
{spring-data}[Spring Data] provides an additional level of functionality: creating `Repository` implementations directly from interfaces and using conventions to generate queries from your method names.
|
|
|
|
|
|
|
|
[[data.sql.datasource]]
|
|
=== Configure a DataSource
|
|
Java's `javax.sql.DataSource` interface provides a standard method of working with database connections.
|
|
Traditionally, a `DataSource` uses a `URL` along with some credentials to establish a database connection.
|
|
|
|
TIP: See <<howto#howto.data-access.configure-custom-datasource,the "`How-to`" section>> for more advanced examples, typically to take full control over the configuration of the DataSource.
|
|
|
|
|
|
|
|
[[data.sql.datasource.embedded]]
|
|
==== Embedded Database Support
|
|
It is often convenient to develop applications by using an in-memory embedded database.
|
|
Obviously, in-memory databases do not provide persistent storage.
|
|
You need to populate your database when your application starts and be prepared to throw away data when your application ends.
|
|
|
|
TIP: The "`How-to`" section includes a <<howto#howto.data-initialization, section on how to initialize a database>>.
|
|
|
|
Spring Boot can auto-configure embedded https://www.h2database.com[H2], https://hsqldb.org/[HSQL], and https://db.apache.org/derby/[Derby] databases.
|
|
You need not provide any connection URLs.
|
|
You need only include a build dependency to the embedded database that you want to use.
|
|
If there are multiple embedded databases on the classpath, set the configprop:spring.datasource.embedded-database-connection[] configuration property to control which one is used.
|
|
Setting the property to `none` disables auto-configuration of an embedded database.
|
|
|
|
[NOTE]
|
|
====
|
|
If you are using this feature in your tests, you may notice that the same database is reused by your whole test suite regardless of the number of application contexts that you use.
|
|
If you want to make sure that each context has a separate embedded database, you should set `spring.datasource.generate-unique-name` to `true`.
|
|
====
|
|
|
|
For example, the typical POM dependencies would be as follows:
|
|
|
|
[source,xml,indent=0,subs="verbatim"]
|
|
----
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
----
|
|
|
|
NOTE: You need a dependency on `spring-jdbc` for an embedded database to be auto-configured.
|
|
In this example, it is pulled in transitively through `spring-boot-starter-data-jpa`.
|
|
|
|
TIP: If, for whatever reason, you do configure the connection URL for an embedded database, take care to ensure that the database's automatic shutdown is disabled.
|
|
If you use H2, you should use `DB_CLOSE_ON_EXIT=FALSE` to do so.
|
|
If you use HSQLDB, you should ensure that `shutdown=true` is not used.
|
|
Disabling the database's automatic shutdown lets Spring Boot control when the database is closed, thereby ensuring that it happens once access to the database is no longer needed.
|
|
|
|
|
|
|
|
[[data.sql.datasource.production]]
|
|
==== Connection to a Production Database
|
|
Production database connections can also be auto-configured by using a pooling `DataSource`.
|
|
|
|
|
|
|
|
[[data.sql.datasource.configuration]]
|
|
==== DataSource Configuration
|
|
DataSource configuration is controlled by external configuration properties in `+spring.datasource.*+`.
|
|
For example, you might declare the following section in `application.properties`:
|
|
|
|
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
|
|
----
|
|
spring:
|
|
datasource:
|
|
url: "jdbc:mysql://localhost/test"
|
|
username: "dbuser"
|
|
password: "dbpass"
|
|
----
|
|
|
|
NOTE: You should at least specify the URL by setting the configprop:spring.datasource.url[] property.
|
|
Otherwise, Spring Boot tries to auto-configure an embedded database.
|
|
|
|
TIP: Spring Boot can deduce the JDBC driver class for most databases from the URL.
|
|
If you need to specify a specific class, you can use the configprop:spring.datasource.driver-class-name[] property.
|
|
|
|
NOTE: For a pooling `DataSource` to be created, we need to be able to verify that a valid `Driver` class is available, so we check for that before doing anything.
|
|
In other words, if you set `spring.datasource.driver-class-name=com.mysql.jdbc.Driver`, then that class has to be loadable.
|
|
|
|
See {spring-boot-autoconfigure-module-code}/jdbc/DataSourceProperties.java[`DataSourceProperties`] for more of the supported options.
|
|
These are the standard options that work regardless of <<features#data.sql.datasource.connection-pool, the actual implementation>>.
|
|
It is also possible to fine-tune implementation-specific settings by using their respective prefix (`+spring.datasource.hikari.*+`, `+spring.datasource.tomcat.*+`, `+spring.datasource.dbcp2.*+`, and `+spring.datasource.oracleucp.*+`).
|
|
See the documentation of the connection pool implementation you are using for more details.
|
|
|
|
For instance, if you use the {tomcat-docs}/jdbc-pool.html#Common_Attributes[Tomcat connection pool], you could customize many additional settings, as shown in the following example:
|
|
|
|
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
|
|
----
|
|
spring:
|
|
datasource:
|
|
tomcat:
|
|
max-wait: 10000
|
|
max-active: 50
|
|
test-on-borrow: true
|
|
----
|
|
|
|
This will set the pool to wait 10000ms before throwing an exception if no connection is available, limit the maximum number of connections to 50 and validate the connection before borrowing it from the pool.
|
|
|
|
|
|
|
|
[[data.sql.datasource.connection-pool]]
|
|
==== Supported Connection Pools
|
|
Spring Boot uses the following algorithm for choosing a specific implementation:
|
|
|
|
. We prefer https://github.com/brettwooldridge/HikariCP[HikariCP] for its performance and concurrency.
|
|
If HikariCP is available, we always choose it.
|
|
. Otherwise, if the Tomcat pooling `DataSource` is available, we use it.
|
|
. Otherwise, if https://commons.apache.org/proper/commons-dbcp/[Commons DBCP2] is available, we use it.
|
|
. If none of HikariCP, Tomcat, and DBCP2 are available and if Oracle UCP is available, we use it.
|
|
|
|
NOTE: If you use the `spring-boot-starter-jdbc` or `spring-boot-starter-data-jpa` "`starters`", you automatically get a dependency to `HikariCP`.
|
|
|
|
You can bypass that algorithm completely and specify the connection pool to use by setting the configprop:spring.datasource.type[] property.
|
|
This is especially important if you run your application in a Tomcat container, as `tomcat-jdbc` is provided by default.
|
|
|
|
Additional connection pools can always be configured manually, using `DataSourceBuilder`.
|
|
If you define your own `DataSource` bean, auto-configuration does not occur.
|
|
The following connection pools are supported by `DataSourceBuilder`:
|
|
|
|
* HikariCP
|
|
* Tomcat pooling `Datasource`
|
|
* Commons DBCP2
|
|
* Oracle UCP & `OracleDataSource`
|
|
* Spring Framework's `SimpleDriverDataSource`
|
|
* H2 `JdbcDataSource`
|
|
* PostgreSQL `PGSimpleDataSource`
|
|
* C3P0
|
|
|
|
|
|
|
|
[[data.sql.datasource.jndi]]
|
|
==== Connection to a JNDI DataSource
|
|
If you deploy your Spring Boot application to an Application Server, you might want to configure and manage your DataSource by using your Application Server's built-in features and access it by using JNDI.
|
|
|
|
The configprop:spring.datasource.jndi-name[] property can be used as an alternative to the configprop:spring.datasource.url[], configprop:spring.datasource.username[], and configprop:spring.datasource.password[] properties to access the `DataSource` from a specific JNDI location.
|
|
For example, the following section in `application.properties` shows how you can access a JBoss AS defined `DataSource`:
|
|
|
|
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
|
|
----
|
|
spring:
|
|
datasource:
|
|
jndi-name: "java:jboss/datasources/customers"
|
|
----
|
|
|
|
|
|
|
|
[[data.sql.jdbc-template]]
|
|
=== Using JdbcTemplate
|
|
Spring's `JdbcTemplate` and `NamedParameterJdbcTemplate` classes are auto-configured, and you can `@Autowire` them directly into your own beans, as shown in the following example:
|
|
|
|
include::code:MyBean[]
|
|
|
|
You can customize some properties of the template by using the `spring.jdbc.template.*` properties, as shown in the following example:
|
|
|
|
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
|
|
----
|
|
spring:
|
|
jdbc:
|
|
template:
|
|
max-rows: 500
|
|
----
|
|
|
|
NOTE: The `NamedParameterJdbcTemplate` reuses the same `JdbcTemplate` instance behind the scenes.
|
|
If more than one `JdbcTemplate` is defined and no primary candidate exists, the `NamedParameterJdbcTemplate` is not auto-configured.
|
|
|
|
|
|
|
|
[[data.sql.jdbc-client]]
|
|
=== Using JdbcClient
|
|
Spring's `JdbcClient` is auto-configured based on the presence of a `NamedParameterJdbcTemplate`.
|
|
You can inject it directly in your own beans as well, as shown in the following example:
|
|
|
|
include::code:MyBean[]
|
|
|
|
If you rely on auto-configuration to create the underlying `JdbcTemplate`, any customization using `spring.jdbc.template.*` properties is taken into account in the client as well.
|
|
|
|
|
|
|
|
[[data.sql.jpa-and-spring-data]]
|
|
=== JPA and Spring Data JPA
|
|
The Java Persistence API is a standard technology that lets you "`map`" objects to relational databases.
|
|
The `spring-boot-starter-data-jpa` POM provides a quick way to get started.
|
|
It provides the following key dependencies:
|
|
|
|
* Hibernate: One of the most popular JPA implementations.
|
|
* Spring Data JPA: Helps you to implement JPA-based repositories.
|
|
* Spring ORM: Core ORM support from the Spring Framework.
|
|
|
|
TIP: We do not go into too many details of JPA or {spring-data}[Spring Data] here.
|
|
You can follow the https://spring.io/guides/gs/accessing-data-jpa/["`Accessing Data with JPA`"] guide from https://spring.io and read the {spring-data-jpa}[Spring Data JPA] and https://hibernate.org/orm/documentation/[Hibernate] reference documentation.
|
|
|
|
|
|
|
|
[[data.sql.jpa-and-spring-data.entity-classes]]
|
|
==== Entity Classes
|
|
Traditionally, JPA "`Entity`" classes are specified in a `persistence.xml` file.
|
|
With Spring Boot, this file is not necessary and "`Entity Scanning`" is used instead.
|
|
By default the <<using#using.auto-configuration.packages,auto-configuration packages>> are scanned.
|
|
|
|
Any classes annotated with `@Entity`, `@Embeddable`, or `@MappedSuperclass` are considered.
|
|
A typical entity class resembles the following example:
|
|
|
|
include::code:City[]
|
|
|
|
TIP: You can customize entity scanning locations by using the `@EntityScan` annotation.
|
|
See the "`<<howto#howto.data-access.separate-entity-definitions-from-spring-configuration>>`" how-to.
|
|
|
|
|
|
|
|
[[data.sql.jpa-and-spring-data.repositories]]
|
|
==== Spring Data JPA Repositories
|
|
{spring-data-jpa}[Spring Data JPA] repositories are interfaces that you can define to access data.
|
|
JPA 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.
|
|
|
|
For more complex queries, you can annotate your method with Spring Data's {spring-data-jpa-api}/repository/Query.html[`Query`] annotation.
|
|
|
|
Spring Data repositories usually extend from the {spring-data-commons-api}/repository/Repository.html[`Repository`] or {spring-data-commons-api}/repository/CrudRepository.html[`CrudRepository`] interfaces.
|
|
If you use auto-configuration, the <<using#using.auto-configuration.packages,auto-configuration packages>> are searched for repositories.
|
|
|
|
TIP: You can customize the locations to look for repositories using `@EnableJpaRepositories`.
|
|
|
|
The following example shows a typical Spring Data repository interface definition:
|
|
|
|
include::code:CityRepository[]
|
|
|
|
Spring Data JPA repositories support three different modes of bootstrapping: default, deferred, and lazy.
|
|
To enable deferred or lazy bootstrapping, set the configprop:spring.data.jpa.repositories.bootstrap-mode[] property to `deferred` or `lazy` respectively.
|
|
When using deferred or lazy bootstrapping, the auto-configured `EntityManagerFactoryBuilder` will use the context's `AsyncTaskExecutor`, if any, as the bootstrap executor.
|
|
If more than one exists, the one named `applicationTaskExecutor` will be used.
|
|
|
|
[NOTE]
|
|
====
|
|
When using deferred or lazy bootstrapping, make sure to defer any access to the JPA infrastructure after the application context bootstrap phase.
|
|
You can use `SmartInitializingSingleton` to invoke any initialization that requires the JPA infrastructure.
|
|
For JPA components (such as converters) that are created as Spring beans, use `ObjectProvider` to delay the resolution of dependencies, if any.
|
|
====
|
|
|
|
TIP: We have barely scratched the surface of Spring Data JPA.
|
|
For complete details, see the {spring-data-jpa-docs}[Spring Data JPA reference documentation].
|
|
|
|
|
|
|
|
[[data.sql.jpa-and-spring-data.envers-repositories]]
|
|
==== Spring Data Envers Repositories
|
|
If {spring-data-envers}[Spring Data Envers] is available, JPA repositories are auto-configured to support typical Envers queries.
|
|
|
|
To use Spring Data Envers, make sure your repository extends from `RevisionRepository` as shown in the following example:
|
|
|
|
include::code:CountryRepository[]
|
|
|
|
NOTE: For more details, check the {spring-data-jpa-docs}/#envers[Spring Data Envers reference documentation].
|
|
|
|
|
|
|
|
[[data.sql.jpa-and-spring-data.creating-and-dropping]]
|
|
==== Creating and Dropping JPA Databases
|
|
By default, JPA databases are automatically created *only* if you use an embedded database (H2, HSQL, or Derby).
|
|
You can explicitly configure JPA settings by using `+spring.jpa.*+` properties.
|
|
For example, to create and drop tables you can add the following line to your `application.properties`:
|
|
|
|
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
|
|
----
|
|
spring:
|
|
jpa:
|
|
hibernate.ddl-auto: "create-drop"
|
|
----
|
|
|
|
NOTE: Hibernate's own internal property name for this (if you happen to remember it better) is `hibernate.hbm2ddl.auto`.
|
|
You can set it, along with other Hibernate native properties, by using `+spring.jpa.properties.*+` (the prefix is stripped before adding them to the entity manager).
|
|
The following line shows an example of setting JPA properties for Hibernate:
|
|
|
|
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
|
|
----
|
|
spring:
|
|
jpa:
|
|
properties:
|
|
hibernate:
|
|
"globally_quoted_identifiers": "true"
|
|
----
|
|
|
|
The line in the preceding example passes a value of `true` for the `hibernate.globally_quoted_identifiers` property to the Hibernate entity manager.
|
|
|
|
By default, the DDL execution (or validation) is deferred until the `ApplicationContext` has started.
|
|
|
|
|
|
|
|
[[data.sql.jpa-and-spring-data.open-entity-manager-in-view]]
|
|
==== Open EntityManager in View
|
|
If you are running a web application, Spring Boot by default registers {spring-framework-api}/orm/jpa/support/OpenEntityManagerInViewInterceptor.html[`OpenEntityManagerInViewInterceptor`] to apply the "`Open EntityManager in View`" pattern, to allow for lazy loading in web views.
|
|
If you do not want this behavior, you should set `spring.jpa.open-in-view` to `false` in your `application.properties`.
|
|
|
|
|
|
|
|
[[data.sql.jdbc]]
|
|
=== Spring Data JDBC
|
|
Spring Data includes repository support for JDBC and will automatically generate SQL for the methods on `CrudRepository`.
|
|
For more advanced queries, a `@Query` annotation is provided.
|
|
|
|
Spring Boot will auto-configure Spring Data's JDBC repositories when the necessary dependencies are on the classpath.
|
|
They can be added to your project with a single dependency on `spring-boot-starter-data-jdbc`.
|
|
If necessary, you can take control of Spring Data JDBC's configuration by adding the `@EnableJdbcRepositories` annotation or an `AbstractJdbcConfiguration` subclass to your application.
|
|
|
|
TIP: For complete details of Spring Data JDBC, see the {spring-data-jdbc-docs}[reference documentation].
|
|
|
|
|
|
|
|
[[data.sql.h2-web-console]]
|
|
=== Using H2's Web Console
|
|
The https://www.h2database.com[H2 database] provides a https://www.h2database.com/html/quickstart.html#h2_console[browser-based console] that Spring Boot can auto-configure for you.
|
|
The console is auto-configured when the following conditions are met:
|
|
|
|
* You are developing a servlet-based web application.
|
|
* `com.h2database:h2` is on the classpath.
|
|
* You are using <<using#using.devtools,Spring Boot's developer tools>>.
|
|
|
|
TIP: If you are not using Spring Boot's developer tools but would still like to make use of H2's console, you can configure the configprop:spring.h2.console.enabled[] property with a value of `true`.
|
|
|
|
NOTE: The H2 console is only intended for use during development, so you should take care to ensure that `spring.h2.console.enabled` is not set to `true` in production.
|
|
|
|
|
|
|
|
[[data.sql.h2-web-console.custom-path]]
|
|
==== Changing the H2 Console's Path
|
|
By default, the console is available at `/h2-console`.
|
|
You can customize the console's path by using the configprop:spring.h2.console.path[] property.
|
|
|
|
|
|
|
|
[[data.sql.h2-web-console.spring-security]]
|
|
==== Accessing the H2 Console in a Secured Application
|
|
H2 Console uses frames and, as it is intended for development only, does not implement CSRF protection measures.
|
|
If your application uses Spring Security, you need to configure it to
|
|
|
|
* disable CSRF protection for requests against the console,
|
|
* set the header `X-Frame-Options` to `SAMEORIGIN` on responses from the console.
|
|
|
|
More information on {spring-security-docs}/features/exploits/csrf.html[CSRF] and the header {spring-security-docs}/features/exploits/headers.html#headers-frame-options[X-Frame-Options] can be found in the Spring Security Reference Guide.
|
|
|
|
In simple setups, a `SecurityFilterChain` like the following can be used:
|
|
|
|
include::code:DevProfileSecurityConfiguration[tag=!customizer]
|
|
|
|
WARNING: The H2 console is only intended for use during development.
|
|
In production, disabling CSRF protection or allowing frames for a website may create severe security risks.
|
|
|
|
TIP: `PathRequest.toH2Console()` returns the correct request matcher also when the console's path has been customized.
|
|
|
|
|
|
|
|
[[data.sql.jooq]]
|
|
=== Using jOOQ
|
|
jOOQ Object Oriented Querying (https://www.jooq.org/[jOOQ]) is a popular product from https://www.datageekery.com/[Data Geekery] which generates Java code from your database and lets you build type-safe SQL queries through its fluent API.
|
|
Both the commercial and open source editions can be used with Spring Boot.
|
|
|
|
|
|
|
|
[[data.sql.jooq.codegen]]
|
|
==== Code Generation
|
|
In order to use jOOQ type-safe queries, you need to generate Java classes from your database schema.
|
|
You can follow the instructions in the {jooq-docs}/#jooq-in-7-steps-step3[jOOQ user manual].
|
|
If you use the `jooq-codegen-maven` plugin and you also use the `spring-boot-starter-parent` "`parent POM`", you can safely omit the plugin's `<version>` tag.
|
|
You can also use Spring Boot-defined version variables (such as `h2.version`) to declare the plugin's database dependency.
|
|
The following listing shows an example:
|
|
|
|
[source,xml,indent=0,subs="verbatim"]
|
|
----
|
|
<plugin>
|
|
<groupId>org.jooq</groupId>
|
|
<artifactId>jooq-codegen-maven</artifactId>
|
|
<executions>
|
|
...
|
|
</executions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>${h2.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<jdbc>
|
|
<driver>org.h2.Driver</driver>
|
|
<url>jdbc:h2:~/yourdatabase</url>
|
|
</jdbc>
|
|
<generator>
|
|
...
|
|
</generator>
|
|
</configuration>
|
|
</plugin>
|
|
----
|
|
|
|
|
|
|
|
[[data.sql.jooq.dslcontext]]
|
|
==== Using DSLContext
|
|
The fluent API offered by jOOQ is initiated through the `org.jooq.DSLContext` interface.
|
|
Spring Boot auto-configures a `DSLContext` as a Spring Bean and connects it to your application `DataSource`.
|
|
To use the `DSLContext`, you can inject it, as shown in the following example:
|
|
|
|
include::code:MyBean[tag=!method]
|
|
|
|
TIP: The jOOQ manual tends to use a variable named `create` to hold the `DSLContext`.
|
|
|
|
You can then use the `DSLContext` to construct your queries, as shown in the following example:
|
|
|
|
include::code:MyBean[tag=method]
|
|
|
|
|
|
|
|
[[data.sql.jooq.sqldialect]]
|
|
==== jOOQ SQL Dialect
|
|
Unless the configprop:spring.jooq.sql-dialect[] property has been configured, Spring Boot determines the SQL dialect to use for your datasource.
|
|
If Spring Boot could not detect the dialect, it uses `DEFAULT`.
|
|
|
|
NOTE: Spring Boot can only auto-configure dialects supported by the open source version of jOOQ.
|
|
|
|
|
|
|
|
[[data.sql.jooq.customizing]]
|
|
==== Customizing jOOQ
|
|
More advanced customizations can be achieved by defining your own `DefaultConfigurationCustomizer` bean that will be invoked prior to creating the `org.jooq.Configuration` `@Bean`.
|
|
This takes precedence to anything that is applied by the auto-configuration.
|
|
|
|
You can also create your own `org.jooq.Configuration` `@Bean` if you want to take complete control of the jOOQ configuration.
|
|
|
|
|
|
|
|
[[data.sql.r2dbc]]
|
|
=== Using R2DBC
|
|
The Reactive Relational Database Connectivity (https://r2dbc.io[R2DBC]) project brings reactive programming APIs to relational databases.
|
|
R2DBC's `io.r2dbc.spi.Connection` provides a standard method of working with non-blocking database connections.
|
|
Connections are provided by using a `ConnectionFactory`, similar to a `DataSource` with jdbc.
|
|
|
|
`ConnectionFactory` configuration is controlled by external configuration properties in `+spring.r2dbc.*+`.
|
|
For example, you might declare the following section in `application.properties`:
|
|
|
|
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
|
|
----
|
|
spring:
|
|
r2dbc:
|
|
url: "r2dbc:postgresql://localhost/test"
|
|
username: "dbuser"
|
|
password: "dbpass"
|
|
----
|
|
|
|
TIP: You do not need to specify a driver class name, since Spring Boot obtains the driver from R2DBC's Connection Factory discovery.
|
|
|
|
NOTE: At least the url should be provided.
|
|
Information specified in the URL takes precedence over individual properties, that is `name`, `username`, `password` and pooling options.
|
|
|
|
TIP: The "`How-to`" section includes a <<howto#howto.data-initialization.using-basic-sql-scripts, section on how to initialize a database>>.
|
|
|
|
To customize the connections created by a `ConnectionFactory`, that is, set specific parameters that you do not want (or cannot) configure in your central database configuration, you can use a `ConnectionFactoryOptionsBuilderCustomizer` `@Bean`.
|
|
The following example shows how to manually override the database port while the rest of the options are taken from the application configuration:
|
|
|
|
include::code:MyR2dbcConfiguration[]
|
|
|
|
The following examples show how to set some PostgreSQL connection options:
|
|
|
|
include::code:MyPostgresR2dbcConfiguration[]
|
|
|
|
When a `ConnectionFactory` bean is available, the regular JDBC `DataSource` auto-configuration backs off.
|
|
If you want to retain the JDBC `DataSource` auto-configuration, and are comfortable with the risk of using the blocking JDBC API in a reactive application, add `@Import(DataSourceAutoConfiguration.class)` on a `@Configuration` class in your application to re-enable it.
|
|
|
|
|
|
|
|
[[data.sql.r2dbc.embedded]]
|
|
==== Embedded Database Support
|
|
Similarly to <<features#data.sql.datasource.embedded,the JDBC support>>, Spring Boot can automatically configure an embedded database for reactive usage.
|
|
You need not provide any connection URLs.
|
|
You need only include a build dependency to the embedded database that you want to use, as shown in the following example:
|
|
|
|
[source,xml,indent=0,subs="verbatim"]
|
|
----
|
|
<dependency>
|
|
<groupId>io.r2dbc</groupId>
|
|
<artifactId>r2dbc-h2</artifactId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
----
|
|
|
|
[NOTE]
|
|
====
|
|
If you are using this feature in your tests, you may notice that the same database is reused by your whole test suite regardless of the number of application contexts that you use.
|
|
If you want to make sure that each context has a separate embedded database, you should set `spring.r2dbc.generate-unique-name` to `true`.
|
|
====
|
|
|
|
|
|
|
|
[[data.sql.r2dbc.using-database-client]]
|
|
==== Using DatabaseClient
|
|
A `DatabaseClient` bean is auto-configured, and you can `@Autowire` it directly into your own beans, as shown in the following example:
|
|
|
|
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.
|
|
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.
|
|
|
|
For more complex queries, you can annotate your method with Spring Data's {spring-data-r2dbc-api}/repository/Query.html[`Query`] annotation.
|
|
|
|
Spring Data repositories usually extend from the {spring-data-commons-api}/repository/Repository.html[`Repository`] or {spring-data-commons-api}/repository/CrudRepository.html[`CrudRepository`] interfaces.
|
|
If you use auto-configuration, the <<using#using.auto-configuration.packages,auto-configuration packages>> are searched for repositories.
|
|
|
|
The following example shows a typical Spring Data repository interface definition:
|
|
|
|
include::code:CityRepository[]
|
|
|
|
TIP: We have barely scratched the surface of Spring Data R2DBC. For complete details, see the {spring-data-r2dbc-docs}[Spring Data R2DBC reference documentation].
|