spring-boot - 无法使用 spring boot 加载 Swagger-UI

标签 spring-boot swagger swagger-ui swagger-2.0 springfox

我正在尝试使用 Swagger 动态记录我的 SpringBoot 应用程序的 REST API。

为了做到这一点,我使用了 springfox,它是 swagger 集成。我已经按照官方文档做了,可以是found here .

完成集成后,我可以通过 http://localhost:8080/v2/api-docs 访问 JSON 输出,但是我无法通过 http://localhost:8080/swagger-ui.html 在 Swagger UI 中看到任何信息.

这是我的设置:

pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <properties>
        <java.version>1.8</java.version>
        <main.basedir>${basedir}/../..</main.basedir>
        <ing.continuous-delivery.version>00.04.04</ing.continuous-delivery.version>
        <maven.assembly.version>2.3</maven.assembly.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>1.5.3.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <dependencies>

        <!-- tag::spring -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-mail</artifactId>
            <version>1.5.3.RELEASE</version>
        </dependency>
        <!-- end::spring -->

        <!-- tag::web -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <version>1.5.3.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-hateoas</artifactId>
            <version>1.5.3.RELEASE</version>
        </dependency>
        <!-- end::web -->

        <!--  tag::swagger -->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <version>2.6.1</version>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <version>2.6.1</version>
        </dependency>
        <!--  end:: swagger -->
    </dependencies>

</project>

网络 MVC 配置:

@Configuration
public class WebMvcConfig extends WebMvcConfigurerAdapter {

    @Override
    public void configurePathMatch(PathMatchConfigurer configurer) {
        configurer.setUseSuffixPatternMatch(false);
    }

    @Override
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        registry.addResourceHandler("swagger-ui.html").addResourceLocations("classpath:/META-INF/resources/");
        registry.addResourceHandler("/webjars/**").addResourceLocations("classpath:/META-INF/resources/webjars/");
    }

}

安全配置:

@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {

    @Override
    protected void configure(HttpSecurity httpSecurity) throws Exception {
        httpSecurity.authorizeRequests().antMatchers("/**", "/swagger-resources").permitAll();
        httpSecurity.csrf().disable();
        httpSecurity.headers().frameOptions().disable();
    }
}

Swagger 配置:

@Configuration
@EnableSwagger2
public class SwaggerConfiguration {
    @Bean
    public Docket api() {
        return new Docket(DocumentationType.SWAGGER_2).select().apis(RequestHandlerSelectors.any())
                .paths(PathSelectors.any()).build();
    }
}

感谢您的帮助!

最佳答案

我的英语不好,这就是为什么使用 GoogleTranslate。

现在 spingdoc 可用,它实现了 openapi3,它为您提供了相同的预期功能,并且使用起来更容易,已经在 answer to another question 中了。除了如何使用 java 注释自定义 api 的信息外,我还解释了如何做

SpringDoc 基于 OpenAPI 3 规范,为 Spring Boot 1.x 和 2.x 应用程序简化了 API 文档的生成和维护。

为了让奇迹发生,我们只需将依赖添加到我们的 pom 中:



    <dependency>
        <groupId>org.springdoc</groupId>
        <artifactId>springdoc-openapi-ui</artifactId>
        <version>1.2.32</version>
    </dependency>

然后访问已有的描述http://localhost:8080/v3/api-docs/

为了 Swagger :http://localhost:8080/swagger-ui.html

仅此而已。

关于spring-boot - 无法使用 spring boot 加载 Swagger-UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46037402/

相关文章:

reference - 是否可以定义参数集并引用它?

twitter-bootstrap - 他们是否提供了任何自定义的 Twitter Bootstrap 式 swagger-ui 实​​现?

testing - 不允许PUT-带有Swagger的REST保证

java - Spring Boot XML 配置选项

java - Spring 启动 : How do get tomcat port at runtime?

java - 如何添加@Qualifier

java - 当操作未使用 @ApiOperation 进行注释时,Swagger 会忽略 JAX-RS @Produces

PHP-Swagger 查询参数

javascript - 如何将多个授权 key 传递给 swagger-js?

java - Docker 中的 OOM,带有 Spring Boot + H2 + JPA 和批处理