Resteasy 在另一个服务中调用服务

发布于 2024-10-30 07:04:35 字数 100 浏览 3 评论 0原文

我有一个服务 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

硪扪都還晓 2024-11-06 07:04:35

Spring只能注入托管实例:

@Service
public class X {

   @Resource
   private Y y;
}


@Service
public class Y {
}

如果您不喜欢将@Service添加到类Y,那么您可以使用它(X将是相同的)

@Configuration
public class AppConfig {
   @Bean
   public Y y {
      return new Y();
   }
}

Spring can only inject managed instances:

@Service
public class X {

   @Resource
   private Y y;
}


@Service
public class Y {
}

If you do not like to add @Service to class Y, then you could use this (X will be the same)

@Configuration
public class AppConfig {
   @Bean
   public Y y {
      return new Y();
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文