我有这个yaml文件:
swagger: '2.0'
definitions:
Customer:
type: object
properties:
toIgnore:
type: string
name:
type: string
这个用swagger-codegen创建java文件的小胡子模板:
{{#vars}}
public static final {{{datatypeWithEnum}}} {{name}}="{{name}}";
{{/vars}}
我想告诉swagger-codegen忽略为属性“toIgnore”创建此行并将此行创建到其他属性。
我该怎么办?
答案 0 :(得分:0)
你有没有尝试打印到何时空?
{{#toIgnore}}
{{/toIgnore}}
{{^toIgnore}}
public static final {{{datatypeWithEnum}}} {{name}}="{{name}}";
{{/toIgnore}}