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

Spring Data Relational. Home of Spring Data JDBC and Spring Data R2DBC.

Results 262 spring-data-relational issues
Sort by recently updated
recently updated
newest added

Hi, I was wondering if there's any way I can implement composite primary keys on entities when using `spring-data-r2dbc`. If there's none, is there any plan for addition or is...

type: enhancement
in: r2dbc

**[Sanghyuk Jung](https://jira.spring.io/secure/ViewProfile.jspa?name=benelog)** opened **[DATAJDBC-319](https://jira.spring.io/browse/DATAJDBC-319?redirect=false)** and commented In MyBatis, Dynamic sql is supported by `@SelectProvider` http://kamalmeet.com/java/mybatis-using-selectprovider-and-resultmap/ ( updated link)   It would be more convenient if a similar feature is in Spring...

in: repository
type: enhancement

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

ReactiveQueryByExampleExecutor when can range lookup be supported,Because my paging optimization may be id > 100 limit 20

status: blocked
type: enhancement
in: jdbc
in: r2dbc

Hi, I'm using `spring-data-r2dbc` and the [extension mechanism](https://github.com/pgjdbc/r2dbc-postgresql#extension-mechanism) from `r2dbc-postgresql` to create a codec for a custom Postgres range type: ```sql CREATE TYPE timetzrange AS RANGE (subtype = timetz); ```...

status: waiting-for-triage
status: feedback-provided
in: r2dbc

Hi, I ran into a problem with a `CrudRepository` and aggregates that contain one-to-many relations and were annotated with `@Table`. Consider this example: ```java public interface AuthorRepository extends CrudRepository {...

in: mapping
in: documentation

Hi guys! I'm trying to apply sorting in a `Pageable`, but there is no way to make it work for a property which is part of an `@Embedded` object. Entities:...

status: ideal-for-contribution
type: enhancement