您的位置:首页 > 财经 > 金融 > 河北常见网站建设价格_深圳被点名批评_浙江疫情最新消息_专门做排行榜的软件

河北常见网站建设价格_深圳被点名批评_浙江疫情最新消息_专门做排行榜的软件

2024/12/23 9:39:36 来源:https://blog.csdn.net/fyl1991fyl/article/details/144087172  浏览:    关键词:河北常见网站建设价格_深圳被点名批评_浙江疫情最新消息_专门做排行榜的软件
河北常见网站建设价格_深圳被点名批评_浙江疫情最新消息_专门做排行榜的软件

一、增加依赖
springboot是2.2.13版本

 implementation 'org.springdoc:springdoc-openapi-ui:1.7.0'


二、增加swagger配置

import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.info.Info;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;@Configuration
public class Swagger3Config {@Beanpublic OpenAPI customOpenAPI() {return new OpenAPI().info(new Info().title("Swagger3 Test").version("1.0").description("This is a sample Spring Boot RESTful service using springdoc-openapi and OpenAPI 3."));}
}

三、配置controller方法,增加注解

import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;import java.util.ArrayList;
import java.util.List;@Tag(name = "BenefitsInfoQueryController Interface", description = "Operations pertaining to user management")
@RestController
@RequestMapping("/benefits/info-query")
public class BenefitsInfoQueryController {@Operation(summary = "查询订购信息", description = "查询订购信息")@PostMapping("query-order-info")public List<OrderQueryRespVO> getInitDeliveryOrderItems(@RequestBody OrderQueryReqVO condition) {List<OrderQueryRespVO> list = new ArrayList<>();list.add(OrderQueryRespVO.builder().serviceNumber("511511515").build());return list;}
}

四、启动服务,访问
 

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

注意如果应用配置了path则路径为:http://localhost:8080/my-application/swagger-ui.html

server:servlet:context-path: /my-applicationport: 8080


界面如下图:

访问这个可以获取api文档,json形式,可以用于导出接口等

http://localhost:8080/my-applicationhttp://localhost:8080/

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com