来源:自学PHP网 时间:2020-09-27 14:39 作者:小飞侠 阅读:次
[导读] SpringBoot使用knife4j进行在线接口调试...
今天带来SpringBoot使用knife4j进行在线接口调试教程详解
前言 我们在开发一个 正文 knife4j knife4j是为
文档说明:根据 在线调试:提供在线接口联调的强大功能,自动解析当前接口参数,同时包含表单验证,调用参数可返回接口响应内容、 SpringBoot使用knife4j进行在线接口调试 注入依赖 <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>knife4j-spring-boot-starter</artifactId> <version>2.0.4</version> </dependency> SwaggerConfig.class :knife4j配置类 @Configuration @EnableSwagger2 @EnableKnife4j @Import(BeanValidatorPluginsConfiguration.class) public class SwaggerConfig { /** * 这里配置swagger扫描的包 * @return */ @Bean public Docket createRestApi() { return new Docket(DocumentationType.SWAGGER_2) .apiInfo(apiInfo()) .select() .apis(RequestHandlerSelectors .basePackage("com.luo.producer")) .paths(PathSelectors.any()).build(); } /** * 这里配置swagger对外提供服务的端口 * @return */ private ApiInfo apiInfo() { return new ApiInfoBuilder().title("发布模拟boos接口") .description("简单优雅的发布模拟boos接口restful风格接口") // .termsOfServiceUrl("http://127.0.0.1:8080/doc.html") .version("1.0").build(); } } 验证 测试接口 @RestController @Slf4j public class UserController { @GetMapping("/helloword") public String hello(String input){ return "你好,"+input; } } 启动项目后:访问http://127.0.0.1:8080/doc.html 如何基于Jenkins构建Jmeter项目 最新评论添加评论更多文章推荐
自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习 京ICP备14009008号-1@版权所有www.zixuephp.com 网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com
添加评论 |