Questions tagged [spring-data-r2dbc]

Spring Data R2DBC is a module of Spring Data based on R2DBC R2DBC stands for Reactive Relational Database Connectivity.

See https://spring.io/projects/spring-data-r2dbc for more information.

412 questions
0
votes
1 answer

Getting “Couldn't find PersistentEntity for type X” when setting r2dbcCustomConversions

I'm getting "Couldn't find PersistentEntity" mapping exception when trying to set r2dbcCustomConversions. I followed some code snippets from r2dbc reference docs Here is my code: @Configuration class ServiceConfiguration :…
Vinipuh007
  • 364
  • 2
  • 12
0
votes
0 answers

How to publish messages from a room with reactive programming?

I deal with the topic of reactive programming. I use WebFlux and R2dbc to access the database. I am developing a small backend for a chat app. So I have some questions on the subject and I would be very happy about suggestions and improvements. This…
user9565938
-1
votes
1 answer

Is there any way to use spring data r2dbc and spring data jpa together?

I have a webflux application that I use JPA repository and hibernate in it, But I need reactive transaction management too , for this I need to add spring data r2dbc to application. Is there any way to do this?
-1
votes
1 answer

Calling Oracle Stored Procedure from R2DBC

I am trying to call an Oracle stored procedure from Spring Data R2DBC. I have currently set up querying either by annotation or R2DBC entity template and those work fine. However, I have not been able to call a proc with input/output parameters. I…
-1
votes
1 answer

R2dbc integration test persisted data not available via API

I am trying to learn Spring web flux with r2dbc. I am trying to execute a test case as follows: Save the data by calling the save method directly via a repository bean. Fetch the saved data by invoking the API using the webflux test client. Step…
-1
votes
2 answers

Spring Data Multiple Host Setting for MYSQL R2DBC

I am trying to access the read replica database from Spring R2DBC.My connection string looks like this spring: r2dbc: url:…
-3
votes
1 answer

Spring data with R2DBC(Mysql) Example for one to many association

Can I know how to do association(One to Many) in Spring data JDBC with R2DBC(Mysql).Please provide small code example or git link if possible. For Example, I have one employee table and address table is child of employee. One employee can have…
1 2 3
27
28