enunciate是否提供了一种选择性地忽略某些api的方法?例如,如果我有以下REST服务:
@PUT
@Path("/somePath")
@Produces({"application/xml"})
Response somePrivateService(Data someData);
如何从文件enunciate生成中排除它?例如:
@PUT
@Path("/somePath")
@Produces({"application/xml"})
@IgnoreThisEnunciate
Response somePrivateService(Data someData);