Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Swagger 为 Apache CXF RESTful API 生成文档。我有 xsd 和 DTO 是使用 xjc 插件从 xsd 生成的。我希望 swagger 在响应类 - swagger 的模型部分下显示来自 xsd 的每个元素的文档。
我无法控制生成的 DTO,因为它在多个项目中共享。如某些示例中所建议的,我无法使用 swagger 注释来注释 DTO 对象。
我有一个类似的问题。当我试图招摇一个返回 response.ok(STRING).build() 的资源时:我对方法进行了注释:
@ApiOperation(value = "Something Resource", notes = "Support for Resource", response = String.class)
这使我大摇大摆的输出。我最终删除了它,一切都很好。我不确定为什么,但如果我是你,我只会注释掉一些 ApiOperations 和 ApiResponse 直到它正确显示。
祝你好运先生!