java 从SwaggerParseResult恢复原始JSON

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

我发现OpenAPIV3Parser提供了对Open API doc JSON进行反序列化的方法,但不允许将其序列化回去。例如,如果我需要制作SwaggerParseResult的深层副本,我无法将其序列化回JSON,然后通过反序列化该JSON来创建新的SwaggerParseResult。事实上,我不确定从SwaggerParseResult恢复原始JSON的官方指导方针是什么(假设我没有将其存储在内存中)
请注意,重新序列化的JSON应该是有效的:它应该能够重新序列化回SwaggerParseResult,在swaggerParseResult.getOpenAPI()调用时返回有效的(非空值,Swagger UI接受)OpenAPI
是否有任何变通办法?
下面是我尝试过的:

  1. package com.example.dynamicgateway.parser;
  2. import com.fasterxml.jackson.core.JsonProcessingException;
  3. import com.fasterxml.jackson.databind.ObjectMapper;
  4. import io.swagger.v3.parser.OpenAPIV3Parser;
  5. import io.swagger.v3.parser.core.models.SwaggerParseResult;
  6. import org.junit.jupiter.api.Test;
  7. public class ParserTest {
  8. private final OpenAPIV3Parser parser = new OpenAPIV3Parser();
  9. @Test
  10. void testParser() throws JsonProcessingException {
  11. String testDoc = getTestDoc();
  12. SwaggerParseResult parseResult = parser.readContents(testDoc);
  13. // I tried with and without writerWithDefaultPrettyPrinter()
  14. String reserializedDoc = new ObjectMapper().writerWithDefaultPrettyPrinter().writeValueAsString(parseResult);
  15. // doesn't work, OpenApi is null
  16. SwaggerParseResult redeserializedDoc = parser.readContents(reserializedDoc);
  17. }
  18. String getTestDoc() {
  19. return """
  20. {
  21. "openapi": "3.0.1",
  22. "info": {
  23. "title": "Hello World API",
  24. "version": "1.0"
  25. },
  26. "servers": [
  27. {
  28. "url": "http://localhost:8090",
  29. "description": "Generated server url"
  30. }
  31. ],
  32. "paths": {
  33. "/joy": {
  34. "get": {
  35. "tags": [
  36. "Message Controller"
  37. ],
  38. "operationId": "getMessageOfJoy",
  39. "responses": {
  40. "200": {
  41. "description": "OK",
  42. "content": {
  43. "*/*": {
  44. "schema": {
  45. "$ref": "#/components/schemas/SuccessMessage"
  46. }
  47. }
  48. }
  49. }
  50. }
  51. }
  52. },
  53. "/auth/hello-world": {
  54. "get": {
  55. "tags": [
  56. "Message Controller"
  57. ],
  58. "operationId": "getHelloWorld",
  59. "parameters": [
  60. {
  61. "name": "principal",
  62. "in": "query",
  63. "required": false,
  64. "schema": {
  65. "type": "string"
  66. }
  67. }
  68. ],
  69. "responses": {
  70. "200": {
  71. "description": "OK",
  72. "content": {
  73. "*/*": {
  74. "schema": {
  75. "$ref": "#/components/schemas/SuccessMessage"
  76. }
  77. }
  78. }
  79. }
  80. }
  81. }
  82. },
  83. "/error": {
  84. "get": {
  85. "tags": [
  86. "my-error-controller"
  87. ],
  88. "operationId": "error",
  89. "responses": {
  90. "200": {
  91. "description": "OK",
  92. "content": {
  93. "*/*": {
  94. "schema": {
  95. "$ref": "#/components/schemas/FailureMessage"
  96. }
  97. }
  98. }
  99. }
  100. }
  101. },
  102. "put": {
  103. "tags": [
  104. "my-error-controller"
  105. ],
  106. "operationId": "error_3",
  107. "responses": {
  108. "200": {
  109. "description": "OK",
  110. "content": {
  111. "*/*": {
  112. "schema": {
  113. "$ref": "#/components/schemas/FailureMessage"
  114. }
  115. }
  116. }
  117. }
  118. }
  119. },
  120. "post": {
  121. "tags": [
  122. "my-error-controller"
  123. ],
  124. "operationId": "error_2",
  125. "responses": {
  126. "200": {
  127. "description": "OK",
  128. "content": {
  129. "*/*": {
  130. "schema": {
  131. "$ref": "#/components/schemas/FailureMessage"
  132. }
  133. }
  134. }
  135. }
  136. }
  137. },
  138. "delete": {
  139. "tags": [
  140. "my-error-controller"
  141. ],
  142. "operationId": "error_5",
  143. "responses": {
  144. "200": {
  145. "description": "OK",
  146. "content": {
  147. "*/*": {
  148. "schema": {
  149. "$ref": "#/components/schemas/FailureMessage"
  150. }
  151. }
  152. }
  153. }
  154. }
  155. },
  156. "options": {
  157. "tags": [
  158. "my-error-controller"
  159. ],
  160. "operationId": "error_6",
  161. "responses": {
  162. "200": {
  163. "description": "OK",
  164. "content": {
  165. "*/*": {
  166. "schema": {
  167. "$ref": "#/components/schemas/FailureMessage"
  168. }
  169. }
  170. }
  171. }
  172. }
  173. },
  174. "head": {
  175. "tags": [
  176. "my-error-controller"
  177. ],
  178. "operationId": "error_1",
  179. "responses": {
  180. "200": {
  181. "description": "OK",
  182. "content": {
  183. "*/*": {
  184. "schema": {
  185. "$ref": "#/components/schemas/FailureMessage"
  186. }
  187. }
  188. }
  189. }
  190. }
  191. },
  192. "patch": {
  193. "tags": [
  194. "my-error-controller"
  195. ],
  196. "operationId": "error_4",
  197. "responses": {
  198. "200": {
  199. "description": "OK",
  200. "content": {
  201. "*/*": {
  202. "schema": {
  203. "$ref": "#/components/schemas/FailureMessage"
  204. }
  205. }
  206. }
  207. }
  208. }
  209. }
  210. }
  211. },
  212. "components": {
  213. "schemas": {
  214. "SuccessMessage": {
  215. "type": "object",
  216. "properties": {
  217. "message": {
  218. "type": "string"
  219. }
  220. }
  221. },
  222. "FailureMessage": {
  223. "type": "object",
  224. "properties": {
  225. "message": {
  226. "type": "string"
  227. },
  228. "method": {
  229. "type": "string",
  230. "enum": [
  231. "GET",
  232. "HEAD",
  233. "POST",
  234. "PUT",
  235. "PATCH",
  236. "DELETE",
  237. "OPTIONS",
  238. "TRACE"
  239. ]
  240. },
  241. "request_path": {
  242. "type": "string"
  243. }
  244. }
  245. }
  246. }
  247. }
  248. }
  249. """;
  250. }
  251. }

字符串

b1uwtaje

b1uwtaje1#

你想做一个深拷贝?好吧。下面是你如何做一个深拷贝:

  1. @SneakyThrows
  2. private OpenAPI deepCopy(OpenAPI openAPI) {
  3. String serializedOpenApi = objectMapper.writeValueAsString(openAPI);
  4. return objectMapper.readValue(serializedOpenApi, OpenAPI.class);
  5. }

字符串
您可以将此技术应用于任何东西,无论是否开箱即用

相关问题