我的问题是关于使用JAXB
的{{1}}选项从swagger 2.0
api定义生成withXml
模型类。我在swagger-codegen-maven-plugin 2.2.3
中有swagger-codegen
的配置
pom.xml
我正在使用<configuration>
<inputSpec>${project.basedir}/src/main/resources/swagger-with-xml.yml</inputSpec>
<language>java</language>
<library>resttemplate</library>
<withXml>true</withXml>
<output>${project.basedir}/target/generated-sources/api</output>
</configuration>
,它提供了cxf-xjc-runtime
的依赖性。我的印象是,该库足以支持jaxb-api
定义中的jaxb
请求的application/xml
模型类生成。但是,我仍然只看到swagger 2.0
注释,没有看到JsonProperty
注释。有人帮忙吗?