java Swagger UI把我的每个端点都放在“默认”组中,为什么它要这样做?

piwo6bdm  于 2024-01-05  发布在  Java
关注(0)|答案(1)|浏览(212)

Swagger UI将我的每一个端点放在“默认”组中
这里是它得到的JSON(不要问我是怎么得到的)。注意这里没有标签(我也尝试了空列表而不是Jackson没有序列化的null)

  1. {
  2. "openapi": "3.0.3",
  3. "info": {
  4. "title": "Api Documentation",
  5. "description": "Api Documentation",
  6. "termsOfService": "urn:tos",
  7. "contact": { },
  8. "license": {
  9. "name": "Apache 2.0",
  10. "url": "http://www.apache.org/licenses/LICENSE-2.0"
  11. },
  12. "version": "1.0"
  13. },
  14. "servers": [
  15. {
  16. "url": "https://localhost:8080",
  17. "description": "Api-Gateway-V2"
  18. }
  19. ],
  20. "paths": {
  21. "/api/v1/hello-world": {
  22. "get": {
  23. "summary": "getHelloWorld",
  24. "operationId": "getHelloWorldUsingGET",
  25. "responses": {
  26. "200": {
  27. "description": "OK",
  28. "content": {
  29. "*/*": {
  30. "schema": {
  31. "$ref": "#/components/schemas/SuccessMessage",
  32. "exampleSetFlag": false
  33. },
  34. "exampleSetFlag": false
  35. }
  36. }
  37. },
  38. "401": {
  39. "description": "Unauthorized"
  40. },
  41. "403": {
  42. "description": "Forbidden"
  43. },
  44. "404": {
  45. "description": "Not Found"
  46. }
  47. }
  48. }
  49. },
  50. "/api/v1/joy": {
  51. "get": {
  52. "summary": "getMessageOfJoy",
  53. "operationId": "getMessageOfJoyUsingGET",
  54. "responses": {
  55. "200": {
  56. "description": "OK",
  57. "content": {
  58. "*/*": {
  59. "schema": {
  60. "$ref": "#/components/schemas/SuccessMessage",
  61. "exampleSetFlag": false
  62. },
  63. "exampleSetFlag": false
  64. }
  65. }
  66. },
  67. "401": {
  68. "description": "Unauthorized"
  69. },
  70. "403": {
  71. "description": "Forbidden"
  72. },
  73. "404": {
  74. "description": "Not Found"
  75. }
  76. }
  77. }
  78. },
  79. "/api/v1/error": {
  80. "get": {
  81. "summary": "error",
  82. "operationId": "errorUsingGET",
  83. "responses": {
  84. "200": {
  85. "description": "OK",
  86. "content": {
  87. "*/*": {
  88. "schema": {
  89. "$ref": "#/components/schemas/FailureMessage",
  90. "exampleSetFlag": false
  91. },
  92. "exampleSetFlag": false
  93. }
  94. }
  95. },
  96. "401": {
  97. "description": "Unauthorized"
  98. },
  99. "403": {
  100. "description": "Forbidden"
  101. },
  102. "404": {
  103. "description": "Not Found"
  104. }
  105. }
  106. },
  107. "put": {
  108. "summary": "error",
  109. "operationId": "errorUsingPUT",
  110. "responses": {
  111. "200": {
  112. "description": "OK",
  113. "content": {
  114. "*/*": {
  115. "schema": {
  116. "$ref": "#/components/schemas/FailureMessage",
  117. "exampleSetFlag": false
  118. },
  119. "exampleSetFlag": false
  120. }
  121. }
  122. },
  123. "201": {
  124. "description": "Created"
  125. },
  126. "401": {
  127. "description": "Unauthorized"
  128. },
  129. "403": {
  130. "description": "Forbidden"
  131. },
  132. "404": {
  133. "description": "Not Found"
  134. }
  135. }
  136. },
  137. "post": {
  138. "summary": "error",
  139. "operationId": "errorUsingPOST",
  140. "responses": {
  141. "200": {
  142. "description": "OK",
  143. "content": {
  144. "*/*": {
  145. "schema": {
  146. "$ref": "#/components/schemas/FailureMessage",
  147. "exampleSetFlag": false
  148. },
  149. "exampleSetFlag": false
  150. }
  151. }
  152. },
  153. "201": {
  154. "description": "Created"
  155. },
  156. "401": {
  157. "description": "Unauthorized"
  158. },
  159. "403": {
  160. "description": "Forbidden"
  161. },
  162. "404": {
  163. "description": "Not Found"
  164. }
  165. }
  166. },
  167. "delete": {
  168. "summary": "error",
  169. "operationId": "errorUsingDELETE",
  170. "responses": {
  171. "200": {
  172. "description": "OK",
  173. "content": {
  174. "*/*": {
  175. "schema": {
  176. "$ref": "#/components/schemas/FailureMessage",
  177. "exampleSetFlag": false
  178. },
  179. "exampleSetFlag": false
  180. }
  181. }
  182. },
  183. "204": {
  184. "description": "No Content"
  185. },
  186. "401": {
  187. "description": "Unauthorized"
  188. },
  189. "403": {
  190. "description": "Forbidden"
  191. }
  192. }
  193. },
  194. "options": {
  195. "summary": "error",
  196. "operationId": "errorUsingOPTIONS",
  197. "responses": {
  198. "200": {
  199. "description": "OK",
  200. "content": {
  201. "*/*": {
  202. "schema": {
  203. "$ref": "#/components/schemas/FailureMessage",
  204. "exampleSetFlag": false
  205. },
  206. "exampleSetFlag": false
  207. }
  208. }
  209. },
  210. "204": {
  211. "description": "No Content"
  212. },
  213. "401": {
  214. "description": "Unauthorized"
  215. },
  216. "403": {
  217. "description": "Forbidden"
  218. }
  219. }
  220. },
  221. "head": {
  222. "summary": "error",
  223. "operationId": "errorUsingHEAD",
  224. "responses": {
  225. "200": {
  226. "description": "OK",
  227. "content": {
  228. "*/*": {
  229. "schema": {
  230. "$ref": "#/components/schemas/FailureMessage",
  231. "exampleSetFlag": false
  232. },
  233. "exampleSetFlag": false
  234. }
  235. }
  236. },
  237. "204": {
  238. "description": "No Content"
  239. },
  240. "401": {
  241. "description": "Unauthorized"
  242. },
  243. "403": {
  244. "description": "Forbidden"
  245. }
  246. }
  247. },
  248. "patch": {
  249. "summary": "error",
  250. "operationId": "errorUsingPATCH",
  251. "responses": {
  252. "200": {
  253. "description": "OK",
  254. "content": {
  255. "*/*": {
  256. "schema": {
  257. "$ref": "#/components/schemas/FailureMessage",
  258. "exampleSetFlag": false
  259. },
  260. "exampleSetFlag": false
  261. }
  262. }
  263. },
  264. "204": {
  265. "description": "No Content"
  266. },
  267. "401": {
  268. "description": "Unauthorized"
  269. },
  270. "403": {
  271. "description": "Forbidden"
  272. }
  273. }
  274. },
  275. "trace": {
  276. "summary": "error",
  277. "operationId": "errorUsingTRACE",
  278. "responses": {
  279. "200": {
  280. "description": "OK",
  281. "content": {
  282. "*/*": {
  283. "schema": {
  284. "$ref": "#/components/schemas/FailureMessage",
  285. "exampleSetFlag": false
  286. },
  287. "exampleSetFlag": false
  288. }
  289. }
  290. },
  291. "204": {
  292. "description": "No Content"
  293. },
  294. "401": {
  295. "description": "Unauthorized"
  296. },
  297. "403": {
  298. "description": "Forbidden"
  299. }
  300. }
  301. }
  302. }
  303. },
  304. "components": {
  305. "schemas": {
  306. "FailureMessage": {
  307. "title": "FailureMessage",
  308. "type": "object",
  309. "properties": {
  310. "message": {
  311. "type": "string",
  312. "exampleSetFlag": false,
  313. "types": [
  314. "string"
  315. ]
  316. },
  317. "method": {
  318. "type": "string",
  319. "exampleSetFlag": false,
  320. "types": [
  321. "string"
  322. ],
  323. "enum": [
  324. "DELETE",
  325. "GET",
  326. "HEAD",
  327. "OPTIONS",
  328. "PATCH",
  329. "POST",
  330. "PUT",
  331. "TRACE"
  332. ]
  333. },
  334. "request_path": {
  335. "type": "string",
  336. "exampleSetFlag": false,
  337. "types": [
  338. "string"
  339. ]
  340. }
  341. },
  342. "exampleSetFlag": false,
  343. "types": [
  344. "object"
  345. ]
  346. },
  347. "SuccessMessage": {
  348. "title": "SuccessMessage",
  349. "type": "object",
  350. "properties": {
  351. "message": {
  352. "type": "string",
  353. "exampleSetFlag": false,
  354. "types": [
  355. "string"
  356. ]
  357. }
  358. },
  359. "exampleSetFlag": false,
  360. "types": [
  361. "object"
  362. ]
  363. }
  364. },
  365. "extensions": { }
  366. }
  367. }

字符串
结果(它的UI因此截图):


的数据
我的Swagger依赖项是:

  1. <!-- API Gateway -->
  2. <dependency>
  3. <groupId>org.springdoc</groupId>
  4. <artifactId>springdoc-openapi-starter-webflux-ui</artifactId>
  5. <version>2.0.4</version>
  6. </dependency>


网关:Java 17, Boot 3

  1. <!-- microservice -->
  2. <dependency>
  3. <groupId>io.springfox</groupId>
  4. <artifactId>springfox-boot-starter</artifactId>
  5. <version>3.0.0</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>io.springfox</groupId>
  9. <artifactId>springfox-swagger-ui</artifactId>
  10. <version>3.0.0</version>
  11. </dependency>


微服务:Java 17, Boot 2
我显然希望它按控制器分组,就像它通常所做的那样
斯威格为什么要这么做

to94eoyn

to94eoyn1#

这是我发现的
Swagger UI按标记对端点进行分组
如果没有添加自定义标记(使用@Tag),Swagger将自动为控制器类创建一个与类名匹配的标记(例如example-controller)。类级别的标记(包括Swagger创建的默认标记)将传播到该控制器类中声明的每个端点
如果一个控制器类或至少一个它的方法有自己的标签,Swagger将 * 不 * 为该类创建默认标签。即使你在将OpenApi对象提供给Swagger UI之前手动将自定义标签从OpenApi对象中删除,你仍然不会有默认标签。这意味着那些没有标签的端点将被分组到“默认”组中

相关问题