spring-data-r2dbc icon indicating copy to clipboard operation
spring-data-r2dbc copied to clipboard

Provide support to increase developer productivity in Java when using Reactive Relational Database Connectivity. Uses familiar Spring concepts such as a DatabaseClient for core API usage and lightweig...

Results 60 spring-data-r2dbc issues
Sort by recently updated
recently updated
newest added

org.springframework.boot spring-boot-starter-data-r2dbc 2.3.12.RELEASE ```jsx DefaultTransactionDefinition def = new DefaultTransactionDefinition(); def.setName("SomeTxName"); def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED); Mono reactiveTx = transactionManager.getReactiveTransaction(def); return reactiveTx.flatMap(status -> { Mono tx = orderDao.save(OrderDb.builder().orderName(name).accountId(id.intValue()).createDate(LocalDateTime.now()).build()).map(orderDb -> { return OrderDataVo.newBuilder().setOrderName(orderDb.getOrderName()).setId(orderDb.getId()).setAccountId(orderDb.getAccountId().longValue()).build(); }); return tx.then(transactionManager.commit(status).map(unused...

status: waiting-for-triage

In my app I have two `R2dbcRepository` - one for object with `Long` ID, second with `String` ID. ```java @Repository public interface ObjectARepository extends R2dbcRepository { Mono existsObjectAByFieldAAndFieldB(Integer fieldA, EnumName...

type: bug

Hello, I wrote a bu report to r2dbc project but they think it's related to spring data this is the original message https://github.com/r2dbc/r2dbc-spi/issues/271 And the description of the bug :...

status: feedback-provided

I'm looking at implementing a read and write converters for an embedded object in a row that may exist in two forms. The specific example is a MonetaryAmount that contains...

type: enhancement

Spring Data JDBC supports one-to-one and one-to-many (either as Set, List or Map) relationships: https://docs.spring.io/spring-data/jdbc/docs/current/reference/html/#jdbc.entity-persistence.types It would be really useful to also have this feature with R2DBC.

status: pending-design-work
status: waiting-for-triage

Hello It looks like tables are not created Postgres stay empty Even with `spring.jpa.hibernate.ddl-auto=create` This is my entity ``` @Table(schema = "common", name = "\"Exchanges\"") data class Exchanges ( @Column("ID")...

status: waiting-for-triage

1.illustrate springboot 2.3.7 springboot-data-r2dbc 1.1.6 2.I used Spring-Data-R2DBC to operate mysql, but I have been reporting an error`org.springframework.beans.factory.UnsatisfiedDependencyException` 3.Complete error description ```java cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with...

status: waiting-for-triage

No way to specify composite id for usage ReactiveCrudRepository

type: enhancement