
Stack Overflow » Spring
215 FOLLOWERS
Find all you need on spring in this section with answers from developers around the world. We are the world's programmer community.
Stack Overflow » Spring
1w ago
I recently upgraded an app from spring 5 to 6. Everything works, except this one thing. When I include hmac in a request to one of my apis, I get "errorMessage":"Missing multipart ..read more
Stack Overflow » Spring
1w ago
I have injected my userrepo with @Autowired. I can signup and add users to the database without any problem. However when I have to authenticate against users in my database I get this issue Caused by ..read more
Stack Overflow » Spring
1w ago
I'm encountering the following error when trying to return a custom ErrorResponse object with a LocalDateTime field using Jackson in my Spring Boot application: com.fasterxml.jackson.databind.exc ..read more
Stack Overflow » Spring
1w ago
I am trying to send logs of my spring boot app to ovh LDP graylog for a specefic stream with the write token. in my build.gradle i add the dependecy : implementation('net.logstash.logback:logstash ..read more
Stack Overflow » Spring
1w ago
I have a class that implements the Spring BeanDefinitionRegistryPostProcessor: package com.example.demo; import org.springframework.beans.BeansException; import org.springframework.beans.factory ..read more
Stack Overflow » Spring
1w ago
I'm trying to make an application where the user can react to post and I'm having trouble with the relationship between the News(Posts) and Reactions. When I try to react to a Post, it give me a ..read more
Stack Overflow » Spring
1w ago
I am using an SQLite database within my project. I have an application-sqlite.properties file which has: spring.datasource.url=jdbc:sqlite:src/main/resources/database.db Before I package my project ..read more
Stack Overflow » Spring
1w ago
I am trying to setup my existing Springboot v3.4.1 project running on Java 17 to work with GraalVM 23.0.7.r17-nik After efforts, I am able to build the project executable, but on executing, ./target ..read more
Stack Overflow » Spring
1w ago
I intentionally coded my controller to throw an exception so I could test the application's failure modes, but I'm not getting consistent results between running locally and running within AWS. I ..read more
Stack Overflow » Spring
1w ago
As stated in the title, I'm facing this issue when optional paramter(endDate) is null. It doesn't throw any error when both parameters are provided. I tried usin cast null as timestamp with time zone ..read more