最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Springdoc Swagger UI 404 Issue with Version 2.5.0 and 2.8.6 - Stack Overflow

programmeradmin1浏览0评论

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>
发布评论

评论列表(0)

  1. 暂无评论