Spring中调用远程EJB的配置

11 篇文章 0 订阅

http://smarttao.bokee.com/3961393.html

对于一些遗留项目,实现EJB的远程调用是很有必要的,这里就简单介绍一下Spring中的配置和调用方式,从中可以感受到Spring可插拔配置业务方法的强大功能.

首先在spring的配置文件中配置如下:

  <bean id="jndiTemplate"
  class="org.springframework.jndi.JndiTemplate">
  <property name="environment">
   <props>
    <prop key="java.naming.provider.url">
     t3://192.168.122.210:7001(websphere:iiop://177.120.122.115:2809)
    </prop>
    <prop key="java.naming.factory.initial">
     weblogic.jndi.WLInitialContextFactory(websphere:com.ibm.websphere.naming.WsnInitialContextFactory)
    </prop>
   </props>
  </property>
 </bean>

 <bean id="remoteInterface"
  class="org.springframework.ejb.access.SimpleRemoteStatelessSessionProxyFactoryBean" lazy-init="true">
  <property name="jndiTemplate">
   <ref local="jndiTemplate" />
  </property>
  <property name="jndiName">
   <value>tmpBean</value>
  </property>
  <property name="businessInterface">
   <value>com.testEjbRemote</value>此处为保存在本机的EJB接口文件
  </property>
 </bean>

然后这样调用:

com.testEjbRemote rpc = (testEjbRemote)SpringContext.getBean("remoteInterface");
       

然后就可以用rpc就像调用本机方法一样调用了.

需要将EJB的远程接口文件拷到本服务器的lib

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值