即使类路径中存在JAXB库,也不会生成Swagger JAXB模型类

时间:2018-10-12 13:28:32

标签: spring-boot jaxb swagger-codegen

我的问题是关于使用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注释。有人帮忙吗?

0 个答案:

没有答案