Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
122 views

I am trying to persist a JsonNode field into a PostgreSQL jsonb column using Spring Boot 4 (Hibernate 7). Entity import tools.jackson.databind.JsonNode; import jakarta.persistence.*; import org....
lain2lo's user avatar
  • 131
2 votes
2 answers
218 views

In my new application, I'm using Spring Boot 4. I noticed that ObjectMapper is now under import tools.jackson.databind.ObjectMapper; so I'd like to understand how to modify this bean that I was using ...
Lako12's user avatar
  • 411
0 votes
1 answer
156 views

I am encountering a java.lang.NoSuchMethodError when running my integration tests using Spring Boot and Testcontainers. The error specifically mentions: java.lang.NoSuchMethodError: 'java.lang.Object ...
sodiki SALAMI's user avatar
0 votes
1 answer
113 views

I have a projecto that was using SpringBoot 3.3.0 with Jackson2 dependency, after I changed to SpringBoot 4.0.2 with Jackson3 dependency the code stop to work. Jackson2: import com.fasterxml.jackson....
Aldo Inácio da Silva's user avatar
1 vote
1 answer
482 views

Context In Spring Boot 3.x we relied on: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration to provide HttpMessageConverter wiring. After upgrading to Spring Boot 4: ...
Aniket's user avatar
  • 11
1 vote
0 answers
78 views

I am using WebTestClient for integration testing in a Spring WebFlux application with method-level security enabled (e.g. @PreAuthorize). After upgrading from Spring Boot 3.5.7 to 4.0.0, my ...
Ajay Kumar's user avatar
0 votes
3 answers
372 views

I’m setting up a project using Spring Boot 4.0.2 (Spring Security 6) and I’m getting a 401 Unauthorized in a MockMvc integration test, even though I’m using @WithMockUser(roles = "ADMIN"). I ...
Francislainy Campos's user avatar