About 251,000 results
Open links in new tab
  1. spring boot - Swagger declaration schema = @Schema …

    Nov 25, 2020 · Sharing my working approach for the issue, I have done a workaround for the @io.swagger.v3.oas.annotations.parameters.RequestBody(content = @Content(schema = …

  2. Lombok Annotations Not Working in Spring Boot Project (Java 21)

    Dec 6, 2024 · I am working on a Spring Boot project using Lombok to generate boilerplate code such as getters, setters, and constructors. Despite having the correct Lombok dependency in …

  3. spring boot - Why to use @AllArgsConstructor and …

    Jul 9, 2021 · I have seen multiple codes online on applications of Spring Boot in IntelliJ, and many use both @AllArgsConstructor and @NoArgsConstructor together and both are constructors …

  4. java - Spring boot validation annotations @Valid and @NotBlank …

    Feb 5, 2018 · Spring Boot validation annotations @Valid and @NotBlank not working issue discussed with possible solutions and troubleshooting steps.

  5. java - What should I replace the hibernate deprecated @TypeDef …

    Nov 19, 2021 · This Stack Overflow thread discusses alternatives to replace deprecated @TypeDef and @Type annotations in Hibernate with modern practices and solutions.

  6. IntelliJ: Spring annotations are not recognized/Do not trigger auto ...

    Feb 5, 2020 · Have you check spring dependencies added in POM. Needs add this anotations @EnableAutoConfiguration, @SpringBootApplication in the main class. check .m2 folder and …

  7. SpringToolSuite is unable to recognize spring boot annotations

    Dec 6, 2022 · In STS, annotations such as the lombok log and most of the getter/setter methods were unrecognized. Failed to perform "Run as Spring Boot App" from STS, but it is successful …

  8. How to validate date in the format "MM/dd/yyyy" in Spring Boot?

    The pattern in @JsonFormat seems to be a SimpleDateFormat pattern which indicates said class is being used internally. SimpleDateFormat has a method to set it to non-lenient …

  9. Spring boot annotations and imports not resolving on Intellij IDE

    Dec 23, 2019 · This project was working fine. I was just playing around with Spring boot versions in pom.xml, imported some new maven projects, then saw that for those new projects, …

  10. java - JSON to POJO with custom annotations - Stack Overflow

    Jan 23, 2018 · I'm trying to include Spring Boot annotations in my generated Java code from JSON like these: @Entity public class Person { ... } and @Repository public interface …