Resteasy 在另一个服务中调用服务
我有一个服务 X 和 Y。如果我想在 X 中调用 Y。有没有办法通过注释来做到这一点。 我不想为 X/Y 配置 bean,因为所有其他资源都是为 X 自动装配的。
谢谢!
I have a services X and Y. If I want to invoke Y inside X. Is there a way to do that thru annotations.
I don't want to configure a bean for X/Y, as all the other resources are Autowired for X.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Spring只能注入托管实例:
如果您不喜欢将@Service添加到类Y,那么您可以使用它(X将是相同的)
Spring can only inject managed instances:
If you do not like to add @Service to class Y, then you could use this (X will be the same)