skip to Main Content

Spring Boot application build failed – Ubuntu

I am trying to build locally this repository https://github.com/spring-projects/spring-petclinic I followed the steps from the repo but the build result looks like this: [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 6.757 s [INFO] Finished at: 2023-01-23T15:27:08+02:00 [INFO] ------------------------------------------------------------------------ [ERROR]…

VIEW QUESTION

Spring doesn't validate JSON request

When I send the request: "Person": { "name": 5 } The request should fail (bad request) because 5 isn't a String. It prints: Person{name='5'}. Similarly, there's no error when I send null. I have these annotations: @JsonProperty("name") @Valid @NotBlank private…

VIEW QUESTION
Back To Top
Search