1、添加pom引用。
复制代码
1
2
3
4
5
6<!-- swagger3--> <dependency> <groupId>com.github.xiaoymin</groupId> <artifactId>knife4j-spring-boot-starter</artifactId> <version>3.0.2</version> </dependency>
2、配置application.yml文件。
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20# knife4j配置 knife4j: enable: true setting: enableDocumentManage: false enableSwaggerModels: false enableSearch: false enableOpenApi: false enableVersion: false enableAfterScript: false enableFooter: false enableFooterCustom: true footerCustomContent: Copyright enableHomeCustom: false homeCustomLocation: classpath:markdown/home.md enableDynamicParameter: false enableHost: false enableHostText: localhost:8000 enableDebug: true enableGroup: true
3、创建Knife4jConfiguration配置类。
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51package com.test.web.core.config; import com.github.xiaoymin.knife4j.spring.annotations.EnableKnife4j; import com.github.xiaoymin.knife4j.spring.extension.OpenApiExtensionResolver; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import springfox.documentation.builders.ApiInfoBuilder; import springfox.documentation.builders.PathSelectors; import springfox.documentation.builders.RequestHandlerSelectors; import springfox.documentation.spi.DocumentationType; import springfox.documentation.spring.web.plugins.Docket; /** * @ClassName Knife4jConfiguration * @Description * @Author * @Date * @Version 1.0 **/ @Configuration @EnableKnife4j public class Knife4jConfiguration { /*引入Knife4j提供的扩展类*/ private final OpenApiExtensionResolver openApiExtensionResolver; @Autowired public Knife4jConfiguration(OpenApiExtensionResolver openApiExtensionResolver) { this.openApiExtensionResolver = openApiExtensionResolver; } @Bean(value = "OnLine") public Docket defaultApi2() { Docket docket=new Docket(DocumentationType.OAS_30) .apiInfo(new ApiInfoBuilder() .title("在线调用测试") .description("在线调用测试Swagger升级Knife4j工具") .version("1.0") .build() ) //分组名称 .select() //这里指定Controller扫描包路径 .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) .paths(PathSelectors.any()) .build() .extensions(openApiExtensionResolver.buildExtensions("2.X")); return docket; } }
4、创建测试接口。
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182package com.test.web.controller.tool; import java.util.ArrayList; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.test.common.core.controller.BaseController; import com.test.common.core.domain.AjaxResult; import com.test.common.utils.StringUtils; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiOperation; /** * swagger 用户测试方法 * * @author ruoyi */ @Api("用户信息管理") @RestController @RequestMapping("/test/user") public class TestController extends BaseController { private final static Map<Integer, UserEntity> users = new LinkedHashMap<Integer, UserEntity>(); { users.put(1, new UserEntity(1, "admin", "admin", "11111111111")); users.put(2, new UserEntity(2, "test", "test", "22222222222")); } @ApiOperation("获取用户列表") @GetMapping("/list") public AjaxResult userList() { List<UserEntity> userList = new ArrayList<UserEntity>(users.values()); return AjaxResult.success(userList); } @ApiOperation("获取用户详细") @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path") @GetMapping("/{userId}") public AjaxResult getUser(@PathVariable Integer userId) { if (!users.isEmpty() && users.containsKey(userId)) { return AjaxResult.success(users.get(userId)); } else { return error("用户不存在"); } } @ApiOperation("新增用户") @ApiImplicitParams({ @ApiImplicitParam(name = "userId", value = "用户id", dataType = "Integer"), @ApiImplicitParam(name = "username", value = "用户名称", dataType = "String"), @ApiImplicitParam(name = "password", value = "用户密码", dataType = "String"), @ApiImplicitParam(name = "mobile", value = "用户手机", dataType = "String") }) @PostMapping("/save") public AjaxResult save(UserEntity user) { if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId())) { return error("用户ID不能为空"); } return AjaxResult.success(users.put(user.getUserId(), user)); } @ApiOperation("更新用户") @PutMapping("/update") public AjaxResult update(@RequestBody UserEntity user) { if (StringUtils.isNull(user) || StringUtils.isNull(user.getUserId())) { return error("用户ID不能为空"); } if (users.isEmpty() || !users.containsKey(user.getUserId())) { return error("用户不存在"); } users.remove(user.getUserId()); return AjaxResult.success(users.put(user.getUserId(), user)); } @ApiOperation("删除用户信息") @ApiImplicitParam(name = "userId", value = "用户ID", required = true, dataType = "int", paramType = "path") @DeleteMapping("/{userId}") public AjaxResult delete(@PathVariable Integer userId) { if (!users.isEmpty() && users.containsKey(userId)) { users.remove(userId); return success(); } else { return error("用户不存在"); } } } @ApiModel(value = "UserEntity", description = "用户实体") class UserEntity { @ApiModelProperty("用户ID") private Integer userId; @ApiModelProperty("用户名称") private String username; @ApiModelProperty("用户密码") private String password; @ApiModelProperty("用户手机") private String mobile; public UserEntity() { } public UserEntity(Integer userId, String username, String password, String mobile) { this.userId = userId; this.username = username; this.password = password; this.mobile = mobile; } public Integer getUserId() { return userId; } public void setUserId(Integer userId) { this.userId = userId; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getMobile() { return mobile; } public void setMobile(String mobile) { this.mobile = mobile; } }
5、访问测试接口页面。页面路径:/doc.html
最后
以上就是清新大山最近收集整理的关于JAVA项目关于Knife4j接口工具的引用的全部内容,更多相关JAVA项目关于Knife4j接口工具内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复