Swagger3的使用

本篇涉及到的swagger注解(速记)

@EnableSwagger2 开启swagger
@EnableOpenApi 开启swagger的Api功能
@EnableWebMvc 是为了解决swagger和springmvc整合之后总是出现空指针异常的问题,要有springBoot web依赖哦

Swagger

根据当前的服务端接口,自动的生成接口文档,这个所谓的接口文档,实际上就是一个网站。

  • 数据接口
  • 网页 UI

一项目搭建

创建一个SpringBoot项目,加入依赖

		<dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-boot-starter</artifactId>
            <version>3.0.0</version>
        </dependency>
         <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

二.配置启动类

package com.huang.springboot9;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import springfox.documentation.oas.annotations.EnableOpenApi;
import springfox.documentation.swagger2.annotations.EnableSwagger2;

@SpringBootApplication
/*开启swagger*/
@EnableSwagger2
@EnableOpenApi
/*EnableMVC,是为了解决swagger和springmvc整合之后总是出现空指针异常的问题,要有springBoot web依赖哦*/
@EnableWebMvc
public class SpringBoot9Application {
    public static void main(String[] args) {
        SpringApplication.run(SpringBoot9Application.class, args);
    }
}

三.写一个简单的controller

package com.huang.springboot9.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

    @GetMapping("/hello")
    public String hello() {
        return "hello";
    }
}

四.登录swagger网站;http://localhost:8080/swagger-ui/index.html

注意:

1.swagger2和swagger3的网站以及使用方法是不同的
2.你配置好注解后,运行springBoot后swagger的注解会自动为你配置好swagger

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值