Environment: Spring Boot 2.3.1, Java 11 I have tried out a few things already (also comparing with the sample-app by spring), but so far I have been unsuccessfu
I use keycloak-spring-boot-starter to protect my rest-service from unauthorized access. The authentication works as expected, but if the authentication fails, t
Recently we migrated from websphere traditional to websphere liberty and since then we are not able to access swagger-ui from the browser. We are using a spring
While running springboot restservice application got 404 error. I am using spring boot, jersey rest. I have tried GET requests http://localhost:8080/dunames bu
I have deployed few services in kubernetes and using NGINX ingress to access outside.(Using EC2 instance for all cluster setup). Able to access service through
I am developing an application with an Angular frontend and RESTful Spring Boot Backend I found this very handy maven plugin openapi-generator-maven-plugin from
I added spring-boot-starter-thymeleaf dependency to my project that using spring boot 2.3.1.RELEASE and placed error.html file inside src/main/resources/templat
I'm adding an API to an existing Spring Boot project using @RestController. My Spring Boot experience is: This is my first time using it. The RestController wor
I'm testing interservice communication with Spring Boot Rest services deployed on AWS with AppMesh and Service Discovery enabled. To be able to send messages fr
I create an application that handle pdf and convert them to pdfa3 and also convert the document onto facturX. I developped my application using Springboot and i
I am using spring oAuthClient version 5.2.4.RELEASE By following the document link of spring security https://docs.spring.io/spring-security/site/docs/current
I recently updated my Vaadin Flow Project to the newest Version 23.0.1. It all did great, but the LiveReload (detecting Java-FileChanges) doesnt work at all (It
I want override the Spring Boot default result when calling a not-existing route: { "timestamp": "2022-03-20T17:01:07.453+00:00", "status": 404, "er
I'm using Spring Boot (v1.2.4) deployed on WildFly 8.2 server. On the application I'm using font awesome v4.3. I get the "response already committed exception"
I have created the following entities. @Entity public class Student { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id;
My app uses Angular on the frontend and Spring Boot (w basic authentication & Spring security) on the backend. I'm using a proxy for api requests to my back
I am using the springdoc-openapi-ui. I have configured the global headers named Authorization. When I execute the API Authorization is not showing in the CURL o
I have the following Validator that I use to validate an Update Request. @Component public class UpdateDateValidator implements ConstraintValidator<ValidateD
I'm getting InvalidDefinitionException when trying to use @JsonCreator along with @JsonProperty(value = "version", access = JsonProperty.Access.READ_ONLY) This
My feign client class is as below along with the Application class. @FeignClient(name = "ExampleService", configuration = FeignClientConfig.class, url = "http: