Springboot添加swagger框架

文章目录

  • 依赖
  • yml配置项
  • 运行项目后访问地址
  • 使用案例模拟
    • 访问swagger测试标记接口

依赖

        
        <dependency>
            <groupId>io.springfoxgroupId>
            <artifactId>springfox-boot-starterartifactId>
            <version>3.0.0version>
        dependency>

yml配置项

# 数据源配置
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/practical_training_news?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2B8&useSSL=false
    username: root
    password: *****
 # swagger
  mvc:
    pathmatch:
      matching-strategy: ant_path_matcher

运行项目后访问地址

http://localhost:8080/swagger-ui/index.html

点击访问swagger

使用案例模拟

  • 上面步骤完成后我们在controller中加入注解,然后我们在swagger中就能看到我们的测试接口
  • @Api
  • @ApiOperation
@RestController
@RequestMapping("/user")
@Api(value="用户管理")
public class UserController {
    @Resource
    UserMapper userMapper;
    @GetMapping("/findAll")
    @ApiOperation(value = "查询所有用户")
    public List<User> findAllUsers() {
        return userMapper.selectList(null);
    }
}

访问swagger测试标记接口

Springboot添加swagger框架_第1张图片
Springboot添加swagger框架_第2张图片
Springboot添加swagger框架_第3张图片

你可能感兴趣的:(spring,boot,spring,java)