标签: java swagger dropwizard
假设我有以下端点:
v1/Account/Id v2/Account/Id
当加载我的swagger包时,我得到一个包含v1和v2端点的单个swagger.json。但是我希望将这两个捆绑包分开,这样当我为它们生成客户端时,可以将它们放在com.myservice.client.v1.Account和com.myservice.client.v2.Account中。
v1
v2
com.myservice.client.v1.Account
com.myservice.client.v2.Account
我该如何实现?