Jersey 如何指定两个服务之间的依赖关系?
我的服务器上有 2 个可访问的服务,我想指定一个服务依赖于另一个服务,以便仅当另一个服务成功执行时才执行它。 有没有办法(可能是注释)来指定它?
谢谢。
I have 2 services accessible on my server, and i want to specify that on service depends on the other, so that it is executed only when the other one was successfully executed.
Is there a way (may be an annotation) to specify it?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是说除非第一个服务成功,否则第二个服务不应该访问?听起来这可以/应该用一个简单的标志在代码中完成。如果未设置该标志并调用第二个服务,则返回错误。
You saying the second service shouldn't be accessible unless the first has been succeeded? Sounds like this could/should be done in code with a simple flag. If the flag isn't set and the second service is called, return an error.