Fatih Akbulut
Fatih Akbulut

Reputation: 1

Springdoc Open-Api Restless Api Documentations

I am new in springdoc open-api. I am using spring microservices but instead of springs default mapping annotations, i use some other platform. Is there way to tell spring-doc to look for other annottaions instead of springs default mappings? or is there a way to tell spring-doc to show some non-endpoint methods in swagger-ui.

Upvotes: 0

Views: 428

Answers (1)

João Dias
João Dias

Reputation: 17500

As it is clearly stated in the springdoc official website, springdoc relies on Spring Boot:

springdoc-openapi java library helps to automate the generation of API documentation using spring boot projects.

This means that unless you are using Spring, you can't use springdoc. The best you can do is get it to work without using Spring Boot, but still using Spring Framework as described in https://springdoc.org/#how-to-integrate-open-api-3-with-spring-project-not-spring-boot.

Upvotes: 1

Related Questions