SpringBoot集成Swagger

1、导包

<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger2</artifactId>
    <version>2.9.2</version>
</dependency>
<dependency>
    <groupId>io.springfox</groupId>
    <artifactId>springfox-swagger-ui</artifactId>
    <version>2.9.2</version>
</dependency>

2、配置类

@Configuration
@EnableSwagger2
public class SwaggerConfig {
    @Bean
    public Docket createRestApi() {
        return new Docket(DocumentationType.SWAGGER_2)
                // 是否启用swagger
                .enable(true)
                // swagger信息
                .apiInfo(apiInfo())
                .select()
                // swagger要扫描的包路径
                .apis(RequestHandlerSelectors.basePackage("com.haiot.dm.controller"))
                // 扫描过滤规则
                .paths(PathSelectors.any())
                .build();
    }

    // api文档的详细信息函数
    private ApiInfo apiInfo() {
        return new ApiInfoBuilder()
                // 页面标题
                .title("SpringBoot 集成 Swagger")
                //描述
                .description("用于测试 SpringBoot 集成 Swagger")
                //版本号
                .version("1.0")
                .build();
    }
}

3、使用@EnableSwagger2注解修饰启动类

4、使用注解修饰controller层以及其中的方法,常用注解如下:

  • @Api:作用在类上,用于说明该类的作用。通常标记一个Controller类作为Swagger文档资源。
@RestController
@Api(tags="管理端-设备消息管理")
public class MessageController {

}
  • @ApiOperation:作用在方法上,用于说明该方法的作用。通常用于标记Controller中的方法。
@ApiOperation("删除一条事件")
@GetMapping("deleteOneMsg")
public ServerResponse deleteOneMsg(Integer eventId) {

}
  • @ApiImplicitParams:作用在方法上,包含一组参数的说明,用于说明接口请求参数的意义。
  • @ApiImplicitParam:用在@ApiImplicitParams注解中,指定一个请求参数的各个方面 。
    • paramType:参数放在哪个地方
    • name:参数代表的含义
    • value:参数名称
    • dataType:参数类型
    • required:是否必要,默认false
    • defaultValue:参数的默认值
@ApiOperation(value = "发送简单邮件")
@GetMapping("sendSimpleMail")
@ApiImplicitParams({
        @ApiImplicitParam(name = "to", value = "收件人"),
        @ApiImplicitParam(name = "subject", value = "邮件主题"),
        @ApiImplicitParam(name = "text", value = "邮件内容")
})
private void sendSimpleMail(String to, String subject, String text) throws AddressException {
    emailService.sendSimpleMail(to, subject, text);
}
  • @ApiModel:作用在实体类上,用于描述一个Model的信息。这个注解一般用在post请求时,因参数被@RequestBody修饰,请求参数无法使用@ApiImplicitParam注解进行描述的时候;
  • @ApiModelProperty:作用在实体类的属性上,用于描述model的某个属性。
@Data
@ApiModel
public class MailMessageVO {
    @ApiModelProperty(value = "收件人")
    private String to;              // 收件人
    @ApiModelProperty(value = "主题")
    private String subject;         // 主题
    @ApiModelProperty(value = "项目名")
    private String projectName;     // 项目名
    @ApiModelProperty(value = "事项类型")
    private String eventItemType;   // 事项类型
    @ApiModelProperty(value = "报错位置")
    private String errorPosition;   // 报错位置
    @ApiModelProperty(value = "报错原因")
    private String errorReason;     // 报错原因
    @ApiModelProperty(value = "报错描述")
    private String errorDescribe;   // 报错描述
}

5、 遇到的小坑之swagger页面资源读取不到?

  看了好久博客说,需要配置过滤器,允许swagger-ui资源被读取,但还是没有用。

  离谱的是,前一天配置了swagger2.9.2与springboot2.5.6死活从swagger2.5.0版本变不过来,明明依赖已经刷新了,显示的也是2.9.2,就算配置了过滤器也无法正常展示,但是关机之后第二天重新启动项目就没有问题了。 想看看是否是过滤器起了作用,所以注释了过滤器类,但是效果依然在,那为什么昨天就不行呢?万能的重启大法啊!

  所以之后配置swagger2.9.2再遇到这种问题的话,可以这么解决:

1、关机,重新启动项目(关掉idea似乎不太行),不行的话换下面的方法

2、配置过滤器类,然后重新启动项目,如果没有生效,则关机再重新启动项目

@Configuration

public class Config extends WebMvcConfigurationSupport {

    @Override

    public void addResourceHandlers(ResourceHandlerRegistry registry) {

        registry.addResourceHandler("/**").addResourceLocations(

                "classpath:/static/");



        registry.addResourceHandler("swagger-ui.html").addResourceLocations(

                "classpath:/META-INF/resources/");



        registry.addResourceHandler("/webjars/**").addResourceLocations(

                "classpath:/META-INF/resources/webjars/");



        super.addResourceHandlers(registry);

    }

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要在Spring Boot中集成Swagger,你需要做以下几个步骤: 1. 首先,确保你使用的是Spring Boot 2.5.x及之前的版本。因为从Spring Boot 2.6.x开始,Swagger已经从Spring Boot中移除了。 2. 在你的Spring Boot应用中添加Swagger的依赖。在pom.xml文件中,添加以下依赖: ```xml <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> ``` 3. 在启动类上添加`@EnableSwagger2`注解。这个注解会启用Swagger的功能。你可以将这个注解直接添加到你的Spring Boot启动类上,或者创建一个单独的配置类,在配置类中添加这个注解。 4. 配置Swagger的相关属性。你可以在`application.properties`或`application.yml`文件中添加以下配置: ```yaml springfox.documentation.swagger.v2.path=/swagger springfox.documentation.swagger.ui.enabled=true ``` 这些配置将指定Swagger的路径和UI的启用状态。 5. 编写API文档。在你的控制器类中,使用Swagger的注解来描述你的API接口。例如,你可以使用`@Api`注解来给你的控制器类添加一个API的描述,<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [SpringBoot教程(十六) | SpringBoot集成swagger(全网最全)](https://blog.csdn.net/lsqingfeng/article/details/123678701)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值