We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After adding a single line: server.servlet.context-path=/mytest
server.servlet.context-path=/mytest
I start receiving an error on (mvn clean verify)
[INFO] [INFO] --- springdoc-openapi-maven-plugin:1.4:generate (integration-test) @ demo --- [ERROR] An error has occured: Response code 404 [INFO] [INFO] --- spring-boot-maven-plugin:3.1.0:stop (default) @ demo ---
See here. Just clone to reproduce
https://github.com/guilhermecgs/demo/commit/1865f486a53316bac0938a863c2c27573b1d1249
The text was updated successfully, but these errors were encountered:
Does springdoc works with context path well on spring boot 3?
Sorry, something went wrong.
Somehow it doesn't detect automatically so we had to update the default:
<plugin> <groupId>org.springdoc</groupId> <artifactId>springdoc-openapi-maven-plugin</artifactId> <version>1.3</version> <executions> <execution> <id>integration-test</id> <goals> <goal>generate</goal> </goals> </execution> </executions> <configuration> <apiDocsUrl>http://localhost:8080${server.servlet.context-path}/v3/api-docs</apiDocsUrl> </configuration> </plugin>
No branches or pull requests
After adding a single line:
server.servlet.context-path=/mytest
I start receiving an error on (mvn clean verify)
See here. Just clone to reproduce
https://github.com/guilhermecgs/demo/commit/1865f486a53316bac0938a863c2c27573b1d1249
The text was updated successfully, but these errors were encountered: