Closed josephabijaoude closed 3 years ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
This issue has been automatically closed because it has not had recent activity. Please re-open a new issue if this is still an issue.
I am facing the same issue. Any solution in this case?
@VincentTran1994 use comand mvn dependency:tree
and find out which dependency (most likely webflux) is using springfox. After that remove this dependency, or use maven exclusion to exclude springfox from it.
@VincentTran1994 use comand
mvn dependency:tree
and find out which dependency (most likely webflux) is using springfox. After that remove this dependency, or use maven exclusion to exclude springfox from it.
How?
Hello, It seems that two method are mapped to the same endpoint. While compiling my project, I'm getting the following error:
The project is spring boot and I've added the following dependency: `
`
And on my configuration:
@Bean public Docket api() { return new Docket(DocumentationType.SWAGGER_2) .select() .apis(RequestHandlerSelectors.any()) .paths(PathSelectors.any()) .build(); }