After migration of Spring Boot to version 3.1 and springdoc-openapi libraries to 1.4.1:
- springdoc-openapi-ui
- springdoc-openapi-security
- springdoc-openapi-data-rest
I faced issue ClassNotFoundException: org.springframework.data.rest.webmvc.support.DefaultedPageable
Also now on Swagger UI page controllers and schemas for @Entity
are generated, however earlier there were only endpoints from @RestController
, request and response DTOs. Are there any way to disable it?
Spring Boot 2.3.x
+Spring Cloud Hoxton
+springdoc-openapi
, my full resolved dependencies: gist.github.com/rekhubs/9a635927458cd5a1f243ed0536296673 – John Smith