有选择地忽略某些 api 的文档
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);
Does enunciate provide a means to selectively ignore certain api's? For example, if I have the following REST service:
@PUT
@Path("/somePath")
@Produces({"application/xml"})
Response somePrivateService(Data someData);
How can I exclude it from the documentation enunciate generates? For example:
@PUT
@Path("/somePath")
@Produces({"application/xml"})
@IgnoreThisEnunciate
Response somePrivateService(Data someData);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在方法级别上没有办法做到这一点。不过,我已经为您记录了 JIRA 问题:
http://jira.codehaus.org/browse /ENUNCIATE-541
There's no way to do that at the method-level. I've logged a JIRA issue for you, though:
http://jira.codehaus.org/browse/ENUNCIATE-541