使用 RMI 进行 Spring 依赖注入
假设我们有 2 个项目 ProjectA(前端)和 ProjectB(后端),以及 ProjectA 中的 2 个类 ClassA 和 ProjectB 中的 ClassB。 现在我需要获取ClassA中ClassB的实例。 问题是如何使用Spring和RMI组织ClassB到ClassA的注入? spring.xml 中需要添加什么? 我是java新手,所以如果你能提供带有示例的答案。 提前致谢!!
public void initializeManager() {
InitialContext context = null;
if (manager == null) {
try {
Properties props = TaxFormsConfiguration.getInstance().getProperties();
context = new InitialContext(props);
manager = (EFormsManager) context.lookup("taxsystem/EFormsManagerFacade/remote");
if (manager == null) {
throw new RuntimeException("EFormsManager is null.");
}
} catch (Exception e) {
logger.error("error in EFormsActionManager.initializeManager: " + e.getMessage());
}
}
}
suppose we have 2 projects ProjectA(front end) and ProjectB(back end) and 2 classes ClassA in ProjectA and ClassB in ProjectB.
Now I need to get the instance of ClassB in ClassA.
The question is how to organize injection of ClassB into ClassA by using Spring and RMI? What to add into spring.xml?
I'm new in java so if you can provide the answer with exampls please.
Thanks in advance!!
public void initializeManager() {
InitialContext context = null;
if (manager == null) {
try {
Properties props = TaxFormsConfiguration.getInstance().getProperties();
context = new InitialContext(props);
manager = (EFormsManager) context.lookup("taxsystem/EFormsManagerFacade/remote");
if (manager == null) {
throw new RuntimeException("EFormsManager is null.");
}
} catch (Exception e) {
logger.error("error in EFormsActionManager.initializeManager: " + e.getMessage());
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查用于远程处理的 Spring 参考。 Yuu 可以在那里找到一个示例(第 19.2 章使用 RMI 公开服务),
您将在 XML 中声明您的 bean 并通过 Spring 应用程序上下文获取它们,而不是上下文查找,例如:
RMI 服务器端的 XML:
RMI 客户端的 XML:
Check Spring reference for remoting. Yuu can find an example there (chapter 19.2 Exposing services using RMI)
Instead of context lookup you will declare your beans in XML and get them via Spring application context, for example:
XML on RMI server side:
XML on RMI client side: