Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Filter by
Sorted by
Tagged with
0 votes
0 answers
6 views

I wanna test a PostEntity without removing the next code: @CreatedBy // Have to remove these ", nullable = false, insertable = false, updatable = false" @Column(name = "created_by")...
viespring's user avatar
0 votes
1 answer
46 views

I am new to Java and Spring Boot. I am building a small CRUD app to learn about JPA and the H2 database. This is my POM file: <?xml version="1.0" encoding="UTF-8"?> <...
Robert Meissner's user avatar
-3 votes
0 answers
31 views

I have a Spring Boot process where I have three classes of interest (Service.java, AsyncTaskManager.java, SessionManager.java). I use Service.java to process requests from the Controller, ...
Laolu Ade OG CSR's user avatar
1 vote
2 answers
31 views

I am doing something like the following in a Spring Boot test. @Test void givenAuthenticated_whenDeleteSession_return204() throws Exception { final String manager = ORG_MANAGER_EMAIL; ...
grandouassou's user avatar
  • 2,550
-4 votes
0 answers
39 views

I recently upgraded a Spring Boot application from 2.x to 3.x (Hibernate 5 → Hibernate 6). After migration, a hibernate query that fetches rows containing a JSON column mapped to an object in the ...
Anonymous life's user avatar
0 votes
0 answers
44 views

I'm developing small monolith Spring-based REST API application with next key points: authentication will be only by username/password that are provided directly from mobile app. as sending username/...
sankranti's user avatar
0 votes
1 answer
40 views

Trying create an Oauth 2.0 browser flow by using spring-boot 3.x (3.4.11) spring-framework 6.x application. authorization_code has generated. Then "restTemplate" call to make the token is ...
bobs it geeks's user avatar
0 votes
0 answers
21 views

Context I have a Spring Boot 3.5.6 application packaged as a WAR and deployed on WebLogic 15.1.1 (Jakarta EE 9.1, Java 17). The same code (same config) runs fine with embedded Tomcat and standalone ...
ziad-saade's user avatar
-2 votes
0 answers
18 views

In Entity Class I have a column of type TimeStamp In DB it's of type TimeStamp with TimeZone So .save() operation on new entity is working fine.. In case if it's an existing entity and if i try to do ....
user9215616's user avatar
0 votes
1 answer
60 views

import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.webmvc.test.autoconfigure....
Udhayakumar T's user avatar
0 votes
0 answers
12 views

I would like to use the default TrustManager and a custom KeyManager. I tried the code below, but that does not seem to work. RestClient.builder() .uriBuilderFactory(DefaultUriBuilderFactory(url)) ...
Jian de Haas's user avatar
2 votes
1 answer
58 views

i have the method in springboot that consume a endpoint public Mono<Void> mesaVisadoCalculadoraNotificar(NotificarIn in) { setTimeoutErrorCode("MVC-01"); return Mono....
Roman Gajardo Robles's user avatar
Advice
1 vote
1 replies
35 views

I have Spring Boot with Kafka batching and a topic with 3 partitions. For example, I want to have 1 batch with 100 records continuously if I have a lot of messages in the topic, but if I have a low ...
Mykyta Piddubskiy's user avatar
1 vote
1 answer
91 views

Will Spring Boot 4 not inject a bean for Jackson automatically? I'm getting an error like this, given below: Action: Consider defining a bean of type 'com.fasterxml.jackson.databind.ObjectMapper' in ...
Bobby Akyong's user avatar
Advice
0 votes
2 replies
67 views

I’m starting an inventory system: multi-branch, reporting, invoicing, which I plan to maintain for several years. Tentative stack: Backend: Java + Spring Boot DB: PostgreSQL Interface: Angular 21 But ...
Mlvin's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
10047