All Projects → lecousin → lc-spring-data-r2dbc

lecousin / lc-spring-data-r2dbc

Licence: Apache-2.0 license
An extension of spring-data-r2dbc to provide features such as relationships, joins, cascading save/delete, lazy loading, sequence, schema generation, composite id

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to lc-spring-data-r2dbc

spring-r2dbc-sample
Code samples for demonstrating R2dbc, Spring R2dbc, and Spring Data R2dbc.
Stars: ✭ 105 (+250%)
Mutual labels:  r2dbc, spring-data-r2dbc
ecommerce-microservices-spring-reactive-webflux
E-commerce demo with spring reactive webflux and spring cloud microservice
Stars: ✭ 107 (+256.67%)
Mutual labels:  r2dbc, spring-data-r2dbc
formily
Simple, lightweight, and flexible schema-based form for Vue.js
Stars: ✭ 23 (-23.33%)
Mutual labels:  schema
demo-ionic-tab-routing
An Ionic project which shows different kinds of route definition for a tab based layout.
Stars: ✭ 34 (+13.33%)
Mutual labels:  lazy-loading
hibernate-springcache
Hibernate cache implementation that backs to the Spring Cache abstraction
Stars: ✭ 19 (-36.67%)
Mutual labels:  spring-data
skeleton-carousel
Carousel component. Horizontal and vertical swipe navigation
Stars: ✭ 31 (+3.33%)
Mutual labels:  lazy-loading
nuxt-speedkit
nuxt-speedkit will help you to improve the lighthouse performance score (100/100) of your website.
Stars: ✭ 401 (+1236.67%)
Mutual labels:  lazy-loading
TIFFStack
Load TIFF files into matlab fast, with lazy loading
Stars: ✭ 32 (+6.67%)
Mutual labels:  lazy-loading
schema-registry
📙 json & avro http schema registry backed by Kafka
Stars: ✭ 23 (-23.33%)
Mutual labels:  schema
ethereumjs-account
Project is in active development and has been moved to the EthereumJS VM monorepo.
Stars: ✭ 45 (+50%)
Mutual labels:  schema
doc-us
A MySQL Schema Documentation Generator for Laravel.
Stars: ✭ 33 (+10%)
Mutual labels:  schema
avro turf
A library that makes it easier to use the Avro serialization format from Ruby.
Stars: ✭ 130 (+333.33%)
Mutual labels:  schema
spring-data-cosmosdb
Access data with Azure Cosmos DB
Stars: ✭ 94 (+213.33%)
Mutual labels:  spring-data
ngx-lazy-el
Lazy Loading Angular Components made easy powered by Angular Elements
Stars: ✭ 26 (-13.33%)
Mutual labels:  lazy-loading
faker-schema
Generate fake data using joke2k's faker and your own schema
Stars: ✭ 91 (+203.33%)
Mutual labels:  schema
jekyll-loading-lazy
🧙🏽‍♀️ Automatically adds loading="lazy" to <img> and <iframe> tags. Load images on your sites lazily without JavaScript.
Stars: ✭ 41 (+36.67%)
Mutual labels:  lazy-loading
pocket-cms
☁️ A pocket sized CMS written for nodejs
Stars: ✭ 13 (-56.67%)
Mutual labels:  schema
granate
Code generator for graphql
Stars: ✭ 21 (-30%)
Mutual labels:  schema
open-api-mocker
A mock server based in OpenAPI Specification
Stars: ✭ 58 (+93.33%)
Mutual labels:  schema
micro-joi
A Joi wrapper for zeit/micro
Stars: ✭ 46 (+53.33%)
Mutual labels:  schema

lc-spring-data-r2dbc

   
       

The goal this library is to provide basic ORM features not covered by Spring Data R2DBC (now part of Spring Data Relational project).

Features

  • Lazy loading
  • Linked entities (1 to 1, 1 to n, n to 1, n to n)
  • Select statement with joins
  • Save (insert/update) with cascade
  • Delete with cascade
  • Composite Id
  • Sequence
  • Insert multiple rows in a single INSERT request (except for MySql)
  • Schema generation, with indexes, foreign key constraints, sequences
  • Array columns (only with Postgresql)

Features are detailed with examples in the wiki section

Supported databases

  • H2
  • Postgres
  • MySql

Dependencies version

Dependency groupId artifactId version Latest version
Spring Boot org.springframework.boot spring-boot-starter-data-r2dbc 2.6.7
Appache Commons Lang org.apache.commons commons-lang3 3.12.0
Javassist org.javassist javassist 3.28.0-GA
H2 driver io.r2dbc r2dbc-h2 0.9.1.RELEASE
MySql driver dev.miku r2dbc-mysql 0.8.2.RELEASE
PostgreSQL driver org.postgresql r2dbc-postgresql 0.9.1.RELEASE

Configuration

Dependency configuration

Add the dependency to your project, depending on your database (you may add several if you are using multiple databases in your project):

H2

Maven

<dependency>
  <groupId>net.lecousin.reactive-data-relational</groupId>
  <artifactId>h2</artifactId>
  <version>0.10.2</version>
</dependency>

Gradle

implementation group: 'net.lecousin.reactive-data-relational', name: 'h2', version: '0.10.2'

Postgres

Maven

<dependency>
  <groupId>net.lecousin.reactive-data-relational</groupId>
  <artifactId>postgres</artifactId>
  <version>0.10.2</version>
</dependency>

Gradle

implementation group: 'net.lecousin.reactive-data-relational', name: 'postgres', version: '0.10.2'

MySql

Maven

<dependency>
  <groupId>net.lecousin.reactive-data-relational</groupId>
  <artifactId>mysql</artifactId>
  <version>0.10.2</version>
</dependency>

Gradle

implementation group: 'net.lecousin.reactive-data-relational', name: 'mysql', version: '0.10.2'

Spring Boot configuration

In your Spring Boot application class, you need to:

  • add @EnableR2dbcRepositories(repositoryFactoryBeanClass = LcR2dbcRepositoryFactoryBean.class)
  • launch the initializer LcReactiveDataRelationalInitializer.init() that will add functionalities to your entity classes, before your application starts. This step MUST be done before Spring starts to ensure no entity class is loaded yet in the JVM.
  • configure your database

Example:

@SpringBootApplication
@EnableR2dbcRepositories(repositoryFactoryBeanClass = LcR2dbcRepositoryFactoryBean.class)
@Import(PostgresConfiguration.class) // here you can change depending on the database you are using
public class MyApp {

	public static void main(String[] args) {
		LcReactiveDataRelationalInitializer.init();
		SpringApplication.run(MyApp.class, args);
	}

}

The @Import annotation is used when using a single database connection, and your connection is configured through application properties (application.properties or application.yml). Depending on your database, you can use one of this configuration class:

  • net.lecousin.reactive.data.relational.h2.H2Configuration
  • net.lecousin.reactive.data.relational.mysql.MySqlConfiguration
  • net.lecousin.reactive.data.relational.postgres.PostgresConfiguration

Finally, configure how to connect to the database using Spring R2DBC normal configuration, here is an example of application.yml file:

spring:
  r2dbc:
    username: sa
    url: r2dbc:h2:mem:///testdb;DB_CLOSE_DELAY=-1;

Using custom connection factory

If you want to configure the connection programmatically instead of using application properties, instead of using @Import annotation like in the previous example, you can extend the configuration class to provide your own ConnectionFactory:

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import io.r2dbc.h2.H2ConnectionConfiguration;
import io.r2dbc.h2.H2ConnectionFactory;
import net.lecousin.reactive.data.relational.h2.H2Configuration;

@Configuration
public class H2TestConfiguration extends H2Configuration {

	@Override
	@Bean
	public H2ConnectionFactory connectionFactory() {
		return new H2ConnectionFactory(
			H2ConnectionConfiguration.builder()
			.url("mem:testdb;DB_CLOSE_DELAY=-1;")
			.username("sa")
			.build()
		);
	}
	
}

Multiple databases

If you need to connect to multiple databases, the configuration is different. You need to create a @Configuration class for each database connection, extending class LcR2dbcEntityOperationsBuilder. Instead of declaring @EnableR2dbcRepositories directly on your application class, you will declare it to each configuration class.

Here is an example of such a configuration class:

@Configuration
@EnableR2dbcRepositories(repositoryFactoryBeanClass = LcR2dbcRepositoryFactoryBean.class, basePackages = "com.example.book.dao.repository", entityOperationsRef = "bookOperations")
public class BookConfig extends LcR2dbcEntityOperationsBuilder {

	/** Connection factory. */
	@Bean
	@Qualifier("bookDatabaseConnectionFactory")
	public ConnectionFactory bookDatabaseConnectionFactory(@Value("${database.book}") String databaseUrl) {
		return ConnectionFactories.get(databaseUrl);
	}
	
	/** Entity operations bean. */
	@Bean
	@Qualifier("bookOperations")
	public LcR2dbcEntityTemplate bookOperations(@Qualifier("bookDatabaseConnectionFactory") ConnectionFactory connectionFactory) {
		return buildEntityOperations(connectionFactory);
	}

}
  • define a bean to create a ConnectionFactory (here we get a url from the application configuration, but you can create it in another way)
  • define a bean LcR2dbcEntityTemplate with the connection factory as argument
  • add the annotation @EnableR2dbcRepositories with the packages containing the repositories that will use this database, and the attribute entityOperationsRef set to the qualifier of the LcR2dbcEntityTemplate bean

A complete example illustrating a Spring Boot application connecting to different databases is available in the repository lc-spring-data-r2dbc-sample.

Application startup time

By default, when calling LcReactiveDataRelationalInitializer.init(), all classes present in the class path are analyzed to find entity classes. This can take some time especially if you have many libraries in your class path.

This behavior allows no additional configuration, which make it easier during development. However for production, if it is important for your application to startup faster (for example a microservice), you can declare the list of entity classes in a YAML resource file lc-reactive-data-relational.yaml (similar to file persistence.xml for JPA). The classes are declared under the name entities, each level can declare a package, then leaf names are classes. For example:

entities:
  - net.lecousin.reactive.data.relational.test:
    - simplemodel:
      - BooleanTypes
      - CharacterTypes
    - onetoonemodel:
      - MyEntity1
      - MySubEntity1
    - onetomanymodel:
      - RootEntity
      - SubEntity
      - SubEntity2
      - SubEntity3

The presence of this file will disable class path analysis. Note that you may have several resource files lc-reactive-data-relational.yaml in your class path (for example if several modules are providing entities), and all will be processed.

JUnit 5

For your tests, using JUnit 5, you can use the annotation @DataR2dbcTest provided by Spring, and add the annotation @EnableR2dbcRepositories(repositoryFactoryBeanClass = LcR2dbcRepositoryFactoryBean.class).

In order to make sure the initializer is launched before any test class is loaded, add the following maven dependency, which will automatically call LcReactiveDataRelationalInitializer.init() during JUnit startup:

<dependency>
  <groupId>net.lecousin.reactive-data-relational</groupId>
  <artifactId>test-junit-5</artifactId>
  <version>0.10.2</version>
  <scope>test</scope>
</dependency>

Usage

A more complete guide is available in the wiki section, here is an overview.

Entity class

Your entity classes are declared using the Spring Data R2DBC annotations @Table and @Column:

@Table
public class MyEntity {
	@Column
	private String myText;
}

In addition, here are the following supported annotations:

  • org.springframework.data.annotation.Id indicates a primary key
  • net.lecousin.reactive.data.relational.annotations.CompositeId indicates properties to use as a unique key (cannot be used together with @Id)
  • net.lecousin.reactive.data.relational.annotations.GeneratedValue indicates a value that should be generated by the database (auto increment, using a sequence, or generating a random UUID)
  • org.springframework.data.annotation.Version is used for optimistic lock
  • net.lecousin.reactive.data.relational.annotations.ForeignKey indicates a link with a foreign key stored in the table. The cascade behavior can be specified using the attributes optional, onForeignDeleted, and cascadeDelete. The type of the attribute in the class will be the linked entity class (not the foreign key itself). A foreign key cannot be used on a collection type.
  • net.lecousin.reactive.data.relational.annotations.ForeignTable is the other side of the foreign key. It does not store anything in the table but indicates the link to another class to use with joins or lazy loading. A foreign table can be used on a collection type for a one to many link.
  • net.lecousin.reactive.data.relational.annotations.JoinTable can be used for a many to many (n-n) relationship when no additional field is required on the join table. The join table will be automatically created with the 2 foreign keys. This allows to join directly between 2 tables with many to many relationship in a transparent manner.
  • org.springframework.data.annotation.CreatedDate and org.springframework.data.annotation.LastModifiedDate can be used to automatically store respectively the creation date and modification date. It can be used with a column of type Long, Instant, LocalDate, LocalTime or LocalDateTime. OffsetTime and ZonedDateTime can be used except for MySql that does not support columns with timezone information.
  • net.lecousin.reactive.data.relational.annotations.ColumnDefinition allows to specify constraints for schema generation.

Additional methods may be declared in an Entity class to handle lazy loading, documented in the dedicated section.

Example:

@Table
public class MyEntity {
	@Id @GeneratedValue
	private Long id;
	
	@ColumnDefinition(max = 100, nullable = true)
	private String someOptionalText;
	
	@ForeignKey(optional = false)
	private MyOtherEntity linkedEntity;
	
	[...]
}

Important note for Java > 11

If you use a Java version > 11, the JVM does not allow to modify classes in another package, and this library won't be able to enhance your classes to provide all the functionalities. As a workaround for now, you must explicitly allow it by placing an empty interface named AllowEnhancer in every package containing entities.

You can just create it like this:

public interface AllowEnhancer {
}

Spring Repository

You can use Spring repositories as usual. The methods to save and delete (such as save, saveAll, delete, deleteAll) will automatically be done with cascade. The select methods (findXXX) do not perform any join by default, but allow lazy loading. However joins can be done using SelectQuery. This is described in the 2 following sections.

Lazy loading

Spring Repository methods to find entities (find...) do not perform any join. If your class has links to other classes, they won't be loaded, however this library supports lazy loading which will load the linked entities on demand.

Lazy loading is done by declaring additional methods on your entity class, with a default body. The body will be automatically replaced with the correct code.

Here is an example of an entity enabling lazy loading:

@Table
public class MyEntity {

	@Id @GeneratedValue
	private Long id;

	@ForeignKey(optional = false)
	private MyOtherEntity other;

	@ForeignTable(joinKey = "myEntity")
	private List<JoinEntity> links;

	/* The usual getters and setters. */

	public MyOtherEntity getOther() {
		return other;
	}
	
	public void setOther(MyOtherEntity other) {
		this.other = other;
	}
	
	public List<JoinEntity> getLinks() {
		return links;
	}

	public void setLinks(List<JoinEntity> links) {
		this.links = links;
	}
	
	/* Lazy loading methods. */

	public Mono<MyOtherEntity> lazyGetOther() {
		return null; // you can just return null, the correct code will be automatically generated.
	}

	public Flux<JoinEntity> lazyGetLinks() {
		return null; // you can just return null, the correct code will be automatically generated.
	}
	
	/* Lazy loading of this MyEntity (this class). */
	
	/** @return true if this MyEntity is loaded from database, false if only the @Id is available. */
	public boolean entityLoaded() {
		return false; // you can just return false, the correct code will be automatically generated.
	}
	
	/** Ensure this MyEntity is loaded from database before to use. */
	public Mono<MyEntity> loadEntity() {
		return null; // you can just return null, the correct code will be automatically generated.
	}
	
}

As illustrated by this example, you can define the following methods to handle lazy loading on an entity class:

  • methods public Mono<T> lazyGetXXX() { return null; } to get a loaded entity on a @ForeignKey or @ForeignTable field XXX.
  • For collections, the same method can be declared with a Flux: public Flux<T> lazyGetXXX() { return null; } to get entities from a collection with @ForeignTable
  • a method public boolean entityLoaded() { return false; } to know if the entity instance is fully loaded or not.
  • a method public Mono<T> loadEntity() { return null; } where T is your entity class, to load the instance from the database. If the entity is already loaded, Mono.just(this) is returned (no redundant database query on each call).

The body of those methods will be automatically generated during enhancement (when calling LcReactiveDataRelationalInitializer.init() at startup), that's why you can just return null or false in your code.

Using methods lazyGetXXX or loadEntity allow to ensure the entity or attributes are loaded. If already loaded, nothing is done, else a database request is done. That's why a Mono or Flux is returned, so you can perform your actions in a non-blocking mode even if a database request needs to be executed.

In case an entity or attribute is not loaded, and you are not using those methods, here is the behavior you can expect:

  • On a @ForeignKey attribute, a class will be instantiated with the foreign key as id, all other attributes are not set. That means your attribute is not null (using classical getter) but all its attributes are null except its primary key which is pre-filled. In other words you can get the foreign key value without needing to load the full entity.
  • On a @ForeignTable attribute, the attribute will be null. The reason is that the database table of your entity does not store any information about this link (unlike when having a foreign key).

Note that all those methods are completely optional. If you define some of those methods, the enhancer will generate the corresponding code, else the method will just not be available.

Select with joins

Lazy loading is often not a good solution in term of performance, and we may want to load linked entities in a single database request using joins.

In JPA, entity graphs are used to specify the attributes to fetch automatically. This library does not provide similar way to indicate which links need to be loaded, but you can use the class SelectQuery to perform more complex searches and load linked entities.

The SelectQuery can be used anywhere, including in your Spring Data repositories as default method (note that default methods in Spring Data repositories is not supported with Kotlin).

For example:

public interface RootEntityRepository extends LcR2dbcRepository<RootEntity, Long> {

	/** Search RootEntity having the given value, and fetch sub entities 'list'. */
	default Flux<RootEntity> findByValue(String value) {
		return SelectQuery
		.from(RootEntity.class, "entity")                      // SELECT entity FROM RootEntity AS entity
		.where(Criteria.property("entity", "value").is(value)) // WHERE entity.value = :value
		.join("entity", "list", "sub")                         // JOIN entity.list AS sub
		.execute(getLcClient());
	}
	
	/** Search RootEntity with a sub-entity having the given value, and fetch sub entities. */
	default Flux<RootEntity> findBySubValue(String value) {
		return SelectQuery
		.from(RootEntity.class, "entity")                      // SELECT entity FROM RootEntity AS entity
		.join("entity", "list", "sub")                         // JOIN entity.list AS sub
		.where(Criteria.property("sub", "subValue").is(value)) // WHERE sub.subValue = :value
		.execute(getLcClient());
	}
	
	/** Count RootEntity with a sub-entity having the given value. */
	default Mono<Long> findBySubValue(String value) {
		return SelectQuery
		.from(RootEntity.class, "entity")                      // SELECT entity FROM RootEntity AS entity
		.join("entity", "list", "sub")                         // JOIN entity.list AS sub
		.where(Criteria.property("sub", "subValue").is(value)) // WHERE sub.subValue = :value
		.executeCount(getLcClient());
	}

	/** Search RootEntity having the same value as one of its sub-entities. */	
	default Flux<RootEntity> havingSubValueEqualsToValue() {
		return SelectQuery
		.from(RootEntity.class, "entity")                      // SELECT entity FROM RootEntity AS entity
		.join("entity", "list", "sub")                         // JOIN entity.list AS sub
		.where(Criteria.property("sub", "subValue").is("entity", "value")) // WHERE sub.subValue = entity.value
		.execute(getLcClient());
	}
	
	/** Get all RootEntity and fetch links 'list', 'list2' and 'list3'. */
	default Flux<RootEntity> findAllFull() {
		return getLcClient().execute(
			SelectQuery.from(RootEntity.class, "root")         // SELECT root FROM RootEntity as root
			.join("root", "list", "sub1")                      // JOIN root.list as sub1
			.join("root", "list2", "sub2")                     // JOIN root.list2 as sub2
			.join("root", "list3", "sub3")                     // JOIN root.list3 as sub3
		);
	}

}

You can note the method getLcClient() needed to execute requests, which is automatically available if your repository extends LcR2dbcRepository. If you don't need it, your repository can just extend the R2dbcRepository base interface of Spring.

SelectQuery can be used anywhere, not only in a repository, in this case you will need the client instance that you can inject in your class:

	@Autowired
	private LcReactiveDataRelationalClient lcClient;

In case you have multiple database connections, you can inject the entity template configured for a specific database connection, then get the client using template.getLcClient():

	@Autowired
	@Qualifier("bookOperations")
	private LcR2dbcEntityTemplate template;

Resources

License

lc-spring-data-r2dbc is Open Source software released under the Apache 2.0 license.

Contributing

Any contribution is welcome !

Do not hesitate to start a discussion about new features you would like to contribute to, or to open an issue if you encounter a bug.

Contributions to improve the documentation are also welcome.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].