Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 java 中有一个 Web 服务实现类,我使用 wsgen 生成服务端点类。我的 SEI 中有一个公共方法,我想从 Web 服务界面中排除。好像注释
@WebMethod (exclude=true)
打算这样做,但它似乎不适用于 wsgen ant 任务。
这听起来像问题 #789(wsgen 中的错误)。Maye 尝试一下建议的解决方法:
作为旧 impl 的临时解决方法,您可以尝试在非排除方法上删除 @WebMethod。