Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
92 views

I am trying to understand how worker thread gets returned for other operations while there is still data-access query operation going on? How does it work in reactive libraries? For example- How does ...
gdenuf's user avatar
  • 888
1 vote
1 answer
72 views

I'm using R2DBC with R2dbcRepository in Spring Boot. I have a table called Dispatches with Jakarta annotations but when I invoke the save() method on my repository the save method returns the same ...
Daniel López's user avatar
1 vote
0 answers
70 views

I'm working on a spring webflux app. I've been connecting to an Azure SQl database using username/password. Now I want to switch to Active Directory Service principal, I now have a client id, a client ...
Brilland Tago's user avatar
2 votes
0 answers
173 views

Since updating our project from Spring Boot 3.1.3 to Spring Boot 3.4.3, we have come across an unusual problem that we have not seen before. We have a findAll() method that gets a Flux (of type Platz)....
Oliver Watkins's user avatar
1 vote
0 answers
346 views

I'm building a Kotlin server-side application using Ktor, JetBrains Exposed ORM, and coroutines. The app interacts with two databases: SQLite (used as a local read-only reference DB) PostgreSQL (used ...
Pawandeep Singh's user avatar
0 votes
0 answers
105 views

Stack: Kotlin 2.1.21, Spring Boot 3.5.3, Spring Data R2DBC 3.5.1 I got the folowwing code enum class TimeTypesEnum { FULL, PARTIAL; companion object { fun from(value: String): TimeTypesEnum = ...
Endo Resu's user avatar
0 votes
1 answer
57 views

We have an API written in Kotlin that connects to an Oracle database with ojdbc(and JPA). High Availability is guaranteed via the Oracle Transparent Application Continuity settings. The API uses ...
Arno Beljaars's user avatar
2 votes
1 answer
65 views

There are some tables like the following in our system: locations, addresses, cities. The locations has a address_id that refers to addresses, and addresses has city_id that refers to cities. ...
Hantsy's user avatar
  • 9,671
0 votes
1 answer
77 views

I am trying a trivial test with a basic Spring Boot 3.4 application and the reactive MS Server driver r2dbc-mssql. repo.save(User.builder().name("Joe Smoe").build()) .doOnNext(...
Berti's user avatar
  • 13
0 votes
0 answers
137 views

I’m working on a Spring Boot WebFlux project and I’m planning to use R2DBC to interact with Microsoft SQL Server. However, I’m having difficulty finding clear information on which version of SQL ...
yangjinyoung's user avatar
0 votes
1 answer
88 views

I have an application in Spring Boot 3.4.x using Spring Data R2DBC. Let's say I have two aggregate roots, Book and Author. I understand that from the reactive point of view, it is not possible to work ...
banterCZ's user avatar
  • 1,902
0 votes
1 answer
62 views

Does graalVm have issues with r2dbc working on postgres in Kotlin? I run the sample demo project from spring boot initializers (Kotlin, sping-boot 3.4.3, java 21), which has r2dbc dependency. When I ...
Serob's user avatar
  • 1,091
0 votes
0 answers
140 views

In Jpa Spring Data when using saveAll for entities with the same ids - saveAll successfully saves all the enitities into the database. For example public interface JpaRepository extends JpaRepository&...
Mikhail Geyer's user avatar
2 votes
1 answer
172 views

It's not documented here https://www.jooq.org/doc/latest/manual/sql-execution/transaction-management/ It only shows you that an uncaught exception will cause a rollback. The problem is that ...
Jakub Bochenski's user avatar
2 votes
0 answers
118 views

I have a query that joins two tables (events and event_properties): SELECT e.*, ep.* FROM event e JOIN event_properties ep ON e.event_properties_id = ep.id WHERE e.status = 0 In my R2DBC ...
Preet Bista's user avatar

15 30 50 per page
1
2 3 4 5
27