栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Swagger整合

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Swagger整合

Swagger的作用

  1. 生成在线接口文档
  2. 接口测试

因为每个模块都需要使用这,所以我们建立一个公共的模块来管理

依赖



    
        project_parent
        com.atwjw
        0.0.1-SNAPSHOT
    
    4.0.0

    common
    pom
    
        server_base
        common_utils
        common_utils
    

    
        8
        8
    

    
        
            org.springframework.boot
            spring-boot-starter-web
            provided
          

        
            com.baomidou
            mybatis-plus-boot-starter
            provided
        

        
        
            org.projectlombok
            lombok
            provided
        

        
        
            io.springfox
            springfox-swagger2
            provided
        

        
            io.springfox
            springfox-swagger-ui
            provided
        

        
        
            org.springframework.boot
            spring-boot-starter-data-redis
        

    


配置类

package com.atwjw.servicebase;

import com.google.common.base.Predicates;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.ApiInfoBuilder;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.service.ApiInfo;

import springfox.documentation.service.Contact;
import springfox.documentation.spi.documentationType;
import springfox.documentation.spring.web.plugins.Docket;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

@Configuration//配置类
@EnableSwagger2//Swagger注解
public class SwaggerConfig {

    @Bean
    public Docket webApiConfig() {
        return new Docket(documentationType.SWAGGER_2)
                .groupName("webApi")
                .apiInfo(webApiInfo())//会显示文档中的一些值
                .select()
                .paths(Predicates.not(PathSelectors.regex("/admin/.*")))
                .paths(Predicates.not(PathSelectors.regex("/error.*")))
                .build();

    }

    private ApiInfo webApiInfo() {
//        定义文档的一些信息
        return new ApiInfoBuilder()
                .title("网站-课程中心API文档")
                .description("本文档描述了课程中心微服务接口定义")
                .version("1.0")
                .contact(new Contact("Helen", "http://atwjw.com",
                        "@qq.com"))
                .build();
    }
}

最后一步改变包的扫描规则,SpringBoot需要管理到Swagger,我们需要对Swagger的配置类进行扫描需要在启动类上添加注解

//作为主程序的启动类
@SpringBootApplication
@ComponentScan(basePackages = {"com.atwjw"})//这个是为了扫描到配置类中、、、这个是修改启动了类的扫描规则,如果不修改只能扫描当前项目的类
public class EduApplication {//1、引入依赖2、改变扫描规则
    public static void main(String[] args) {
        SpringApplication.run(EduApplication.class,args);
    }
}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/667771.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号