加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

hessian 例子

发布时间:2020-12-16 23:22:15 所属栏目:安全 来源:网络整理
导读://领域模型类: ? public class HessianModel implements Serializable{ ? ? ? private String username; ? ? ? private String password; ? ? ? ? ? ? ? ? ? ?? ? ? public HessianModel(String username,String password){ ? ? ? ? ? this.username = user
//领域模型类: ? public class HessianModel implements Serializable{ ? ? ? private String username; ? ? ? private String password; ? ? ? ? ? ? ? ? ? ?? ? ? public HessianModel(String username,String password){ ? ? ? ? ? this.username = username; ? ? ? ? ? this.password = password; ? ? ? } ? String url = "http://localhost:8888/spring2/hessian/hessianService"; ? HessianProxyFactory factory = new HessianProxyFactory(); ? HessianService hessianServer = ?? ? ? ? ? ? ? (HessianService)factory.create(HessianService.class,url); ? String ret = hessianServer.sayHello("Raymond.chen"); ? out.print(ret); ? ? ? ? ? ?? HessianModel model = hessianServer.getHessianModel("uid","pwd"); ? out.print("username: " + model.getUsername() + "<br>"); ? <bean id="testHessianService" class="org.springframework.remoting.caucho.HessianProxyFactoryBean"> ? ? ? <property name="serviceUrl" value="http://localhost:8888/spring2/hessian/hessianService"/> ? ? ? <property name="serviceInterface" value="com.cjm.webservice.hessian.HessianService"/> ? </bean> ? ? ? ? ? ? ? ?? <!- Struts2中调用服务 --> ? <bean id="orgAction" class="com.cjm.web.action.OrganizationAction" parent="baseAction"> ? ? ? <property name="organizationService" ref="organizationService"/> ? ? ? <property name="testHessianService" ref="testHessianService"/> ? </bean> ? private HessianService testHessianService; ? ? ? ? ? ? ? ? HessianModel model = testHessianService.getHessianModel("uid","pwd"); ? System.out.println("username: " + model.getUsername()); ? <!-- 使用jndi数据源需要在web容器配置如下: <Resource auth="Container" driverClassName="oracle.jdbc.OracleDriver"? maxActive="10" maxIdle="5" maxWait="15000" name="jdbc/userDataSource1" password="123456" type="javax.sql.DataSource" url="jdbc:oracle:thin:@localhost:1521:ORCL" username="user" /> -->

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读