admin管理员组文章数量:1344238
I’m facing an issue with Springdoc in my Spring Boot app and could use some help. Here’s the situation:
When I use Springdoc version 2.5.0, everything works fine until I add a @ControllerAdvice
to my project. At that point, I get this error:
java.lang.NoSuchMethodError: 'void .springframework.web.method.ControllerAdviceBean.<init>(java.lang.Object)
'
To fix this, I upgraded to a newer version of Springdoc:
<dependency>
<groupId>.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.8.6</version>
</dependency>
Now, the @ControllerAdvice
error is gone, but I’m hitting a new problem:
http://localhost:8088/api/v1/v3/api-docs works perfectly (I get the OpenAPI JSON).
http://localhost:8088/api/v1/swagger-ui/index.html returns a 404 Not Found.
My config:
springdoc:
default-produces-media-type: "application/json"
server:
port: 8088
servlet:
context-path: /api/v1
I’ve tried: Adding springdoc.swagger-ui.path=/swagger-ui.html and springdoc.swagger-ui.enabled=true. Permitting /swagger-ui/** and /v3/api-docs/** in my Spring Security config. Adding a WebMvcConfigurer to map /swagger-ui/** to classpath:/META-INF/resources/webjars/springdoc-openapi-ui/. Still, I can’t access the Swagger UI—it’s always 404. The API docs endpoint works.
and this my pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns=".0.0" xmlns:xsi=";
xsi:schemaLocation=".0.0 .0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.mohamed</groupId>
<artifactId>GP-Project</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>GP-Project</name>
<description>GP-Project</description>
<url/>
<licenses>
<license/>
</licenses>
<developers>
<developer/>
</developers>
<scm>
<connection/>
<developerConnection/>
<tag/>
<url/>
</scm>
<properties>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
<groupId>.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity6</artifactId>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.8.6</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>0.12.6</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>0.12.6</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>0.12.6</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
本文标签: javaSpringdoc Swagger UI 404 Issue with Version 250 and 286Stack Overflow
版权声明:本文标题:java - Springdoc Swagger UI 404 Issue with Version 2.5.0 and 2.8.6 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743746644a2531876.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论