当前位置 : 主页 > 网页制作 > Nodejs >

Webservice的cxf开发_使用spring配置客户端

来源:互联网 收集:自由互联 发布时间:2021-06-24
1.配置客户端实体 !-- 客户端实体bean --jaxws:client id="myclient" address="http://localhost:8080/CxfTest/ws/myservice" serviceClass="cn.xt.client.IMyService" / 这里的servicesClass指的是cxf生成的客户端代码中的Servi

1.配置客户端实体


<!-- 客户端实体bean -->
	<jaxws:client id="myclient" address="http://localhost:8080/CxfTest/ws/myservice" serviceClass="cn.xt.client.IMyService" />

这里的servicesClass指的是cxf生成的客户端代码中的Service接口,spring通过这个接口生成代理对象


2.注入到bean实体中

将myclient注入bean Test中


<bean id="test" class="cn.xt.client.Test">
		<property name="service" ref="myclient"></property>
	</bean>

3.调用


ApplicationContext ctx = new ClassPathXmlApplicationContext("cxf.xml");
		Test test = ctx.getBean("test",Test.class);
		IMyService service = test.getService();//JaxWsClientProxy
		service.sayHi();
网友评论