Swagger结合springboot使用

本文介绍了如何在SpringBoot项目中集成Swagger,包括环境配置、依赖引入、Swagger配置Bean、定义RESTful接口以及Swagger常用注解的使用。通过启用@EnableSwagger2启动Swagger,并通过@Api、@ApiOperation等注解进行接口和参数的文档化描述。启动项目后,访问http://localhost:8080/swagger-ui.html可查看Swagger UI。
摘要由CSDN通过智能技术生成

1.环境


SpringBoot    2.0.4.RELEASE
Swagger    1.7.1
JDK    1.8


2.依赖

<dependency>
	<groupId>com.spring4all</groupId>
	<artifactId>swagger-spring-boot-starter</artifactId>
	<version>1.7.1.RELEASE</version>
</dependency>


3.Swagger配置Bean
@Configuration会被项目启动加载为配置类,等同于XML中配置的beans;
@Bean标注方法等同于XML中配置的bean。

@Configuration
@EnableSwagger2
public class Swagger2Config {
    @Bean
    public Docket createRestApi(){
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.xx.xx.controller"))
                .paths(PathSelectors.any())
                .build();
    }

    private ApiInfo apiInfo() {
        return n
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值