【WEEK14】 【DAY4】Swagger第二部分【中文版】

2024.5.30 Thursday
接上文【WEEK14】 【DAY3】Swagger第一部分【中文版】

目录

  • 16.4.配置扫描接口
    • 16.4.1.修改SwaggerConfig.java
      • 16.4.1.1.使用.basePackage()方法指定扫描的包路径
      • 16.4.1.2.其他扫描方式均可在RequestHandlerSelectors.class中查看源码
    • 16.4.2.仍然是修改SwaggerConfig.java
      • 16.4.2.1.配置接口扫描过滤
      • 16.4.2.2.其他方法:
  • 16.5.配置Swagger开关
    • 16.5.1.修改enable的值关闭使用swagger
    • 16.5.2.动态配置当项目处于test、dev环境时显示swagger,处于prod时不显示
      • 16.5.2.1.修改SwaggerConfig
      • 16.5.2.2.修改application.properties
      • 16.5.2.3.新建application-dev.properties
      • 16.5.2.4.新建application-pro.properties
      • 16.5.2.5.重启

16.4.配置扫描接口

构建Docket时通过select()方法配置扫描接口的方式

16.4.1.修改SwaggerConfig.java

16.4.1.1.使用.basePackage()方法指定扫描的包路径

package com.P47.config;import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.RequestHandlerSelectors;
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;import java.util.ArrayList;@Configuration  //等价于@Component
@EnableSwagger2 //开启Swagger2
public class SwaggerConfig {//配置了Swagger的bean实例Docket,以配置Swagger的具体参数@Beanpublic Docket docket(){return new Docket(DocumentationType.SWAGGER_2)  //源码见DocumentationType.classpublic class DocumentationType extends SimplePluginMetadata方法,选择符合当前版本的进行编辑.apiInfo(apiInfo()) //public Docket(DocumentationType documentationType)方法点开ApiInfo进入ApiInfo.class.select()   //通过.select()方法,去配置扫描接口,RequestHandlerSelectors配置如何扫描接口.apis(RequestHandlerSelectors.basePackage("com.P47.controll")).build();//点击进入Docket.class可见各类方法源码}//配置Swagger信息(apiInfo)private ApiInfo apiInfo(){//防止DEFAULT_CONTACT(名字改成了contact)报错Contact contact = new Contact("联系人名字", "联系人访问链接", "联系人邮箱");return new ApiInfo("Swagger Api Documentation", //标题"Api Documentation 描述", //描述"version 1.0",  //版本号"http://terms.service.url",  //组织链接contact,    //联系人信息"Apache 2.0",   //许可"http://www.apache.org/licenses/LICENSE-2.0",   //许可链接new ArrayList<>() //扩展);}
}

重启后查看:只剩hello-controller栏
在这里插入图片描述

16.4.1.2.其他扫描方式均可在RequestHandlerSelectors.class中查看源码

basePackage(final String basePackage) // 根据包路径扫描接口
any() // 扫描所有,项目中的所有接口都会被扫描到
none() // 不扫描接口withMethodAnnotation(final Class<? extends Annotation> annotation)  // 通过方法上的注解扫描,如withMethodAnnotation(GetMapping.class)只扫描get请求
withClassAnnotation(final Class<? extends Annotation> annotation)   // 通过类上的注解扫描,如.withClassAnnotation(Controller.class)只扫描有controller注解的类中的接口

16.4.2.仍然是修改SwaggerConfig.java

16.4.2.1.配置接口扫描过滤

添加以下过滤

.paths(PathSelectors.ant("/P47/**"))    //点击path查看初始化private Predicate<String> pathSelector; 这里以.ant()方法为例,只扫描请求以/P47开头的接口

重启后查看:没有显示任何方法
在这里插入图片描述

16.4.2.2.其他方法:

在这里插入图片描述
此时修改后的完整代码

package com.P47.config;import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
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;import java.util.ArrayList;@Configuration  //等价于@Component
@EnableSwagger2 //开启Swagger2
public class SwaggerConfig {//配置了Swagger的bean实例Docket,以配置Swagger的具体参数@Beanpublic Docket docket(){return new Docket(DocumentationType.SWAGGER_2)  //源码见DocumentationType.classpublic class DocumentationType extends SimplePluginMetadata方法,选择符合当前版本的进行编辑.apiInfo(apiInfo()) //public Docket(DocumentationType documentationType)方法点开ApiInfo进入ApiInfo.class.select()   //通过.select()方法,去配置扫描接口,RequestHandlerSelectors配置如何扫描接口.apis(RequestHandlerSelectors.basePackage("com.P47.controll"))  //使用basePackage指定要扫描的包.paths(PathSelectors.ant("/P47/**"))    //点击path查看初始化private Predicate<String> pathSelector; 这里以.ant()方法为例,只扫描请求以/P47开头的接口.build();//点击进入Docket.class可见各类方法源码/*RequestHandlerSelectors.方法basePackage(final String basePackage) // 根据包路径扫描接口any() // 扫描所有,项目中的所有接口都会被扫描到none() // 不扫描接口withMethodAnnotation(final Class<? extends Annotation> annotation)  // 通过方法上的注解扫描,如withMethodAnnotation(GetMapping.class)只扫描get请求withClassAnnotation(final Class<? extends Annotation> annotation)   // 通过类上的注解扫描,如.withClassAnnotation(Controller.class)只扫描有controller注解的类中的接口*//*PathSelectors.方法any() // 任何请求都扫描none() // 任何请求都不扫描regex(final String pathRegex) // 通过正则表达式控制ant(final String antPattern) // 通过ant()控制*/}//配置Swagger信息(apiInfo)private ApiInfo apiInfo(){//防止DEFAULT_CONTACT(名字改成了contact)报错Contact contact = new Contact("联系人名字", "联系人访问链接", "联系人邮箱");return new ApiInfo("Swagger Api Documentation", //标题"Api Documentation 描述", //描述"version 1.0",  //版本号"http://terms.service.url",  //组织链接contact,    //联系人信息"Apache 2.0",   //许可"http://www.apache.org/licenses/LICENSE-2.0",   //许可链接new ArrayList<>() //扩展);}
}

16.5.配置Swagger开关

修改SwaggerConfig.java

16.5.1.修改enable的值关闭使用swagger

@Bean
public Docket docket(){return new Docket(DocumentationType.SWAGGER_2)  //源码见DocumentationType.classpublic class DocumentationType extends SimplePluginMetadata方法,选择符合当前版本的进行编辑.apiInfo(apiInfo()) //public Docket(DocumentationType documentationType)方法点开ApiInfo进入ApiInfo.class.enable(false)  //是否启动swagger,false则不能启动,此时访问页面显示:😱 Could not render e, see the console..select()   //通过.select()方法,去配置扫描接口,RequestHandlerSelectors配置如何扫描接口//.apis(RequestHandlerSelectors.basePackage("com.P47.controll"))  //使用basePackage指定要扫描的包//.paths(PathSelectors.ant("/P47/**"))    //点击path查看初始化private Predicate<String> pathSelector; 这里以.ant()方法为例,只扫描请求以/P47开头的接口.build();}

重启:
在这里插入图片描述

16.5.2.动态配置当项目处于test、dev环境时显示swagger,处于prod时不显示

16.5.2.1.修改SwaggerConfig

@Bean
public Docket docket(Environment environment){// 设置要显示swagger的环境Profiles profiles = Profiles.of("dev", "test");// 判断当前是否处于该环境// 通过 enable() 接收此参数判断是否要显示boolean flag = environment.acceptsProfiles(profiles);return new Docket(DocumentationType.SWAGGER_2)  //源码见DocumentationType.classpublic class DocumentationType extends SimplePluginMetadata方法,选择符合当前版本的进行编辑.apiInfo(apiInfo()) //public Docket(DocumentationType documentationType)方法点开ApiInfo进入ApiInfo.class.enable(flag)  //是否启动swagger,false则不能启动,此时访问页面显示:😱 Could not render e, see the console..select()   //通过.select()方法,去配置扫描接口,RequestHandlerSelectors配置如何扫描接口//.apis(RequestHandlerSelectors.basePackage("com.P47.controll"))  //使用basePackage指定要扫描的包//.paths(PathSelectors.ant("/P47/**"))    //点击path查看初始化private Predicate<String> pathSelector; 这里以.ant()方法为例,只扫描请求以/P47开头的接口.build();}

此时完整的代码:

package com.P47.config;import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.Environment;
import org.springframework.core.env.Profiles;
import springfox.documentation.builders.PathSelectors;
import springfox.documentation.builders.RequestHandlerSelectors;
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;import java.util.ArrayList;@Configuration  //等价于@Component
@EnableSwagger2 //开启Swagger2
public class SwaggerConfig {//配置了Swagger的bean实例Docket,以配置Swagger的具体参数@Beanpublic Docket docket(Environment environment){// 设置要显示swagger的环境Profiles profiles = Profiles.of("dev", "test");// 判断当前是否处于该环境// 通过 enable() 接收此参数判断是否要显示boolean flag = environment.acceptsProfiles(profiles);return new Docket(DocumentationType.SWAGGER_2)  //源码见DocumentationType.classpublic class DocumentationType extends SimplePluginMetadata方法,选择符合当前版本的进行编辑.apiInfo(apiInfo()) //public Docket(DocumentationType documentationType)方法点开ApiInfo进入ApiInfo.class.enable(flag)  //是否启动swagger,false则不能启动,此时访问页面显示:😱 Could not render e, see the console..select()   //通过.select()方法,去配置扫描接口,RequestHandlerSelectors配置如何扫描接口//.apis(RequestHandlerSelectors.basePackage("com.P47.controll"))  //使用basePackage指定要扫描的包//.paths(PathSelectors.ant("/P47/**"))    //点击path查看初始化private Predicate<String> pathSelector; 这里以.ant()方法为例,只扫描请求以/P47开头的接口.build();}//配置Swagger信息(apiInfo)private ApiInfo apiInfo(){//防止DEFAULT_CONTACT(名字改成了contact)报错Contact contact = new Contact("联系人名字", "联系人访问链接", "联系人邮箱");return new ApiInfo("Swagger Api Documentation", //标题"Api Documentation 描述", //描述"version 1.0",  //版本号"http://terms.service.url",  //组织链接contact,    //联系人信息"Apache 2.0",   //许可"http://www.apache.org/licenses/LICENSE-2.0",   //许可链接new ArrayList<>() //扩展);}
}

16.5.2.2.修改application.properties

spring.application.name=swagger-demo
spring.mvc.pathmatch.matching-strategy=ant_path_matcher
spring.profiles.active=dev

16.5.2.3.新建application-dev.properties

#生产环境
server.port=8081

16.5.2.4.新建application-pro.properties

#测试环境
server.port=8082

16.5.2.5.重启

访问http://localhost:8081/swagger-ui.html
在这里插入图片描述
将application.properties中配置改为spring.profiles.active=pro,访问http://localhost:8082/swagger-ui.html无法进入swagger页面。
在这里插入图片描述
同理,如果不写spring.profiles.active指定文件,默认端口是8080,由于此时在SwaggerConfig中的配置,http://localhost:8080/swagger-ui.html也不可访问swagger。
在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/20203.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

这个夏天,凶险如昨?

回望2023年三季度的“美债风暴”&#xff0c;当时美债收益率狂飙突破5%&#xff0c;阴霾笼罩下全球风险资产一片惨淡&#xff0c;这一场景会在今夏再度上演吗&#xff1f; 本周美债遭遇抛售&#xff0c;10年期收益率上破4.6%&#xff0c;2年期收益率逼近5%关口&#xff0c;收益…

linux磁盘满了,如何查找大文件清除?

将整个Linux中文件按照文件大小排序&#xff0c;从大到小排序 只显示前100条数据 命令&#xff1a; find / -type f -exec du -h {} | sort -rh | head -n 100结果&#xff1a;

全栈工程师需要具备哪些技能?

概论&#xff1a; 全栈工程师是一位能够从头到尾构建 Web 应用程序的工程师&#xff0c;能独立完成产品。技术包括前端部分、后端部分和应用程序所在的基础架构。他们在整个技术栈中工作&#xff0c;并了解其中的每个部分。从需求分析开始&#xff0c;到概要设计&#xff0c;详…

HarmonyOS鸿蒙学习笔记(25)相对布局 RelativeContainer详细说明

RelativeContainer 简介 前言核心概念官方实例官方实例改造蓝色方块改造center 属性说明参考资料 前言 RelativeContainer是鸿蒙的相对布局组件&#xff0c;它的布局很灵活&#xff0c;可以很方便的控制各个子UI 组件的相对位置&#xff0c;其布局理念有点类似于android的约束…

270 基于matlab的模糊自适应PID控制

基于matlab的模糊自适应PID控制&#xff0c;具有10页报告。传统PID在对象变化时&#xff0c;控制器的参数难以自动调整。将模糊控制与PID控制结合&#xff0c;利用模糊推理方法实现对PID参数的在线自整定。使控制器具有较好的自适应性。使用MATLAB对系统进行仿真&#xff0c;结…

win10系统下WPS工具显示灰色全部用不了,提示登录

如果你在写文档或使用excel时发现导航栏的工具全部使用不了&#xff0c;弹出是需要您登录&#xff0c;可以通过以下操作不用登录。 按照 1&#xff08;搜索框&#xff09;—> 2&#xff08;应用&#xff09;—> 3&#xff08;WPS Office&#xff09;点鼠标左键—> 4&a…

大规模 Transformer 模型 8 比特矩阵乘

本文基于 Hugging Face Transformers、Accelerate 以及 bitsandbytes库。 Transformers&#xff1a;Hugging Face 提供的一个开源库&#xff0c;包含了多种预训练的 Transformer 模型&#xff0c;方便用户进行各种 NLP 任务。Accelerate&#xff1a;Hugging Face 开发的一个库…

04.k8s的附加组件

4.k8s的附加组件 4.1 dns服务 安装dns服务 1:下载dns_docker镜像包 wget http://192.168.12.201/docker_image/docker_k8s_dns.tar.gz2:导入dns_docker镜像包(所有节点或者node2节点) 3:修改skydns-rc.yaml&#xff0c;指定13的机器&#xff0c;该功能可加可不加 spec:node…

Arduino RP2040 CDC虚拟串口通讯--普通串口不显示

这两天在用RP2040运行些程序&#xff0c;但发现一个问题&#xff0c;使用arduino IDE可以通过串口显示数据&#xff0c;但是其他串口工具不会显示数据&#xff0c;可以打开串口&#xff0c;排查一下午无果&#xff0c;相当头疼&#xff0c; 晚上搜索时发现这个介绍&#xff1a…

详细分析async/await的基本知识以及用法(附Demo)

目录 前言1. 基本知识2. Demo2.1 单异步2.2 多异步2.3 配合钩子2.4 差异 3. 实战 前言 原先在小程序的时候用过这个用法&#xff0c;知识点差不过&#xff0c;推荐阅读&#xff1a;详细分析Js中的Promise.all基本知识&#xff08;附Demo&#xff09; 以下文章针对Vue3知识&am…

【康耐视国产案例】智能AI相机机器视觉精准快速实现包裹标签的智能粘贴

康耐视推出的3D-A1000是专业的、匹配物流行业各类分拣机及包裹检测应用的全功能视觉检测系统&#xff0c;其能够准确检测分拣机上是否有包裹、包裹是否超出边界、空车检测、是否有遗留物品等。由于搭载了专利的三维结构光技术&#xff0c;产品具有更强大的创新性以满足持续更新…

ARM虚拟机安装OMV

OMV(OpenMediaVault)是基于 Debian GNU/Linux 的网络连接存储&#xff08;network attached storage&#xff0c;NAS&#xff09;解决方案。它包含 SSH、(S) FTP、SMB/CIFS、DAAP 媒体服务器、rsync、 BitTorrent 等很多种服务。它可用于 x86-64 和 ARM 平台。 在x86-64平台上&…

「浏览器」服务端渲染

前言 服务端渲染&#xff08;Server-Side Rendering&#xff0c;SSR&#xff09;是一种常见于网页应用的技术&#xff0c;它指的是在服务器上将网页的内容生成&#xff0c;然后发送完整的HTML页面到客户端的浏览器的过程。这与传统的客户端渲染&#xff08;Client-Side Render…

Bean作用域和生产周期已经Bean的线程安全问题

bean 的作用域 单例(Singletion) : Spring 容器中只有一个 bean &#xff0c;这个 bean 在整个应用程序内共享。 原话(Prototype) : 每次 getBean()&#xff0c; 都是不同的bean&#xff0c;都会创建一个实例。 请求(Request)&#xff1a;每个HTTP请求都会创建一个新的 Bean …

旧衣回收小程序带来的收益优势,小程序有哪些功能?

随着互联网的快速发展&#xff0c;大众对旧衣回收市场也越来越了解&#xff0c;对于闲置的旧衣物也有了适合的处理方式。旧衣回收也符合了当下资源回收利用&#xff0c;因此&#xff0c;旧衣回收市场获得了爆发式增长&#xff0c;市场规模不断扩大。同时市场中还吸引了越来越多…

【调试笔记-20240530-Linux-在 OpenWRT-23.05 上为 nginx 配置 HTTPS 网站】

调试笔记-系列文章目录 调试笔记-20240530-Linux-在 OpenWRT-23.05 上为 nginx 配置 HTTPS 网站 文章目录 调试笔记-系列文章目录调试笔记-20240530-Linux-在 OpenWRT-23.05 上为 nginx 配置 HTTPS 网站 前言一、调试环境操作系统&#xff1a;OpenWrt 23.05.3调试环境调试目标…

安全风险 - 组件导出风险

在安全审查中关于组件导出风险是一种常见问题&#xff0c;不同组件都有可能遇到这种问题&#xff0c;而且从一定角度来看的话&#xff0c;如果涉及到三方业务&#xff0c;基本处于无法解决的场景&#xff0c;所以我们需要说明为何无法避免这种风险 组件导出风险能不能规避&…

【智能AI相机】基于AI的新型成像和照明技术

缩短检测时间 降低废品率和成本 更快捕捉更多缺陷 ” Trevista CI Dome将康耐视专利的计算成像算法与结构化漫射圆顶照明相结合&#xff0c;提供无与伦比的地形图像质量&#xff0c;为光泽和哑光表面检测提供创新解决方案。有助于&#xff1a;缩短检测时间、降低废品率和成本…

北京仁爱堂李艳波主任如何预约挂号?

北京仁爱堂擅长治疗神经系统疾病&#xff0c;例如&#xff1a;痉挛性斜颈&#xff0c;特发性震颤&#xff0c;眼球震颤&#xff0c;帕金森&#xff0c;眼球震颤等。 北京仁爱堂国医馆是一所集治疗、 预防、保健、养生于一体的传统中医诊所&#xff0c;具有精湛技术和丰富经验的…

C#的web项目ASP.NET

添加实体类和控制器类 using System; using System.Collections.Generic; using System.Linq; using System.Web;namespace WebApplication1.Models {public class Company{public string companyCode { get; set; }public string companyName { get; set; }public string com…