Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!

Question list filters

Filter by
Sorted by
Tagged with
Filter by Employee ID
Score of 0
1 answer
95 views

My first Spring Reactor kotlin app with r2dbc: controller: @RestController class RootController (private val svc: ProcessMsgService) { @PostMapping( value = ["/"] , ...
Score of 1
1 answer
72 views

I have a question about embedded server configuration in a Spring Boot + Spring WebFlux application using Reactor Netty. In a traditional Spring MVC + embedded Tomcat environment, I understand that we ...
Score of -1
1 answer
124 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 ...
Score of 1
0 answers
91 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 ...
Score of 1
0 answers
115 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 ...
Score of 2
0 answers
215 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)....
Score of 1
0 answers
449 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 ...
Score of 0
1 answer
138 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 = ...
Score of 0
1 answer
79 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 ...
Score of 2
1 answer
74 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. ...
Score of 0
1 answer
97 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(...
Score of 0
0 answers
158 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 ...
Score of 0
1 answer
107 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 ...
Score of 0
1 answer
76 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 ...
Score of 0
0 answers
161 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&...

15 30 50 per page
1
2 3 4 5
28