设为首页 收藏本站
查看: 668|回复: 0

[经验分享] Apache CXF 第一篇:HelloWorld

[复制链接]

尚未签到

发表于 2017-1-2 08:19:16 | 显示全部楼层 |阅读模式
1、开发环境:JDK 1.6,Spring 2.0,LZ使用Apache CXF 2.6.2 版本。因为使用Spring 2.0故不能使用CXF with Spring的方式配置WebServices服务,故采用传统的Servlet方式。
2、所需CXFJAR,在CXF下载包中均存在

<!-- WebServices Apache CXF -->
<dependency>
<groupId>cxf</groupId>
<artifactId>cxf</artifactId>
<version>2.6.2</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>neethi</artifactId>
<version>3.0.2</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.6</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.2.5</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>wsdl4j</artifactId>
<version>1.6.2</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>wss4j</artifactId>
<version>1.6.7</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>xmlschema-core</artifactId>
<version>2.0.3</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>xml-resolver</artifactId>
<version>1.2</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>xmlsec</artifactId>
<version>1.5.2</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>xmlbeans</artifactId>
<version>2.5.0</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>saaj-api</artifactId>
<version>1.3.4</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>saaj-impl</artifactId>
<version>1.3.18</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>geronimo-activation_1.1_spec</artifactId>
<version>1.1</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>geronimo-annotation_1.0_spec</artifactId>
<version>1.1.1</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>geronimo-javamail_1.4_spec</artifactId>
<version>1.7.1</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>
<dependency>
<groupId>cxf</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>2.2.5</version>
<type>jar</type>
<properties>
<war.bundle>true</war.bundle>
</properties>
</dependency>


3、服务端接口:

package com.vtradex.training.server.cxf.helloworld;
import javax.jws.WebParam;
import javax.jws.WebService;
import com.vtradex.training.server.cxf.WsConstants;
/**
*
* @author <a href="mailto:brofe.pan@gmail.com">潘宁波</a>
* @version $Revision: v1.0 $Date: 2012-8-31 $
*/
@WebService(name = "HelloWorldService", targetNamespace = WsConstants.NS)
public interface HelloWorldService {
String say(@WebParam(name="message") String message);
}


4、服务端实现类:

package com.vtradex.training.server.cxf.helloworld.impl;
import javax.jws.WebService;
import com.vtradex.training.server.cxf.WsConstants;
import com.vtradex.training.server.cxf.helloworld.HelloWorldService;
/**
* WebService服务端实现类.
*
* serviceName与portName属性指明WSDL中的名称, endpointInterface属性指向Interface定义类.
*
* @author <a href="mailto:brofe.pan@gmail.com">潘宁波</a>
* @version $Revision: v1.0 $Date: 2012-8-31 $
*/
@WebService(serviceName = "HelloWorldService", portName = "HelloWorldServicePort", endpointInterface = "com.vtradex.training.server.cxf.helloworld.HelloWorldService", targetNamespace = WsConstants.NS)
public class HelloWorldServiceImpl implements HelloWorldService {
@Override
public String say(String message) {
return "Hello, " + message;
}
}


5、常量定义类:

package com.vtradex.training.server.cxf;
/**
* WebService常量定义.
*
* @author <a href="mailto:brofe.pan@gmail.com">潘宁波</a>
* @version $Revision: v1.0 $Date: 2012-8-31 $
*/
public class WsConstants {
/**项目内统一的NameSpace定义, for SOAP.*/
public static final String NS = "http://thorn4.training.vtradex.com";
/**项目内统一的XML charset定义, for REST*/
public static final String CHARSET = ";charset=UTF-8";
}


6、发布服务的 Servlet

package com.vtradex.training.server.cxf.helloworld;
import javax.servlet.ServletConfig;
import javax.xml.ws.Endpoint;
import org.apache.cxf.transport.servlet.CXFNonSpringServlet;
import com.vtradex.training.server.cxf.helloworld.impl.HelloWorldServiceImpl;
/**
*
*
* @author <a href="mailto:brofe.pan@gmail.com">潘宁波</a>
* @version $Revision: v1.0 $Date: 2012-9-1 $
*/
public class WsServlet extends CXFNonSpringServlet {
private static final long serialVersionUID = 1L;
@Override
protected void loadBus(ServletConfig sc) {
super.loadBus(sc);
System.out.println("Starting CXF Web Services... HelloWorldServices");
//: http://localhost:8088/training/ws/helloWorldService?wsdl
Endpoint.publish("/helloWorldService", new HelloWorldServiceImpl());
}
}


7、web.xml

<servlet>
<servlet-name>CXFServlet</servlet-name>
<servlet-class>com.vtradex.training.server.cxf.helloworld.WsServlet</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>CXFServlet</servlet-name>
<url-pattern>/ws/*</url-pattern>
</servlet-mapping>


8、启动Web服务,在浏览器中即可查看WSDL
9、CXF 客户端调用:

package com.vtradex.training.server.cxf.helloworld;
import org.apache.cxf.endpoint.Client;
import org.apache.cxf.interceptor.LoggingInInterceptor;
import org.apache.cxf.interceptor.LoggingOutInterceptor;
import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory;
/**
*
*
* @author <a href="mailto:brofe.pan@gmail.com">潘宁波</a>
* @version $Revision: v1.0 $Date: 2012-9-1 $
*/
public class WsClient {
public static void main(String[] args) {
/**
* 这种方式要求客户端必须依赖服务端
*/
//JaxWsProxyFactoryBean bean = new JaxWsProxyFactoryBean();  
//        bean.setServiceClass(HelloWorldService.class);  
//        bean.setAddress("http://localhost:8088/training/ws/helloWorldService");  
//        HelloWorldService helloWorldService = (HelloWorldService)bean.create();  
//        String result = helloWorldService.say("Brofe");  
//        System.out.println(result);
/**
* 通过WSDL调用
*/
JaxWsDynamicClientFactory clientFactory = JaxWsDynamicClientFactory.newInstance();
Client client = clientFactory.createClient("http://localhost:8088/training/ws/helloWorldService?wsdl");
client.getInInterceptors().add(new LoggingInInterceptor());
client.getOutInterceptors().add(new LoggingOutInterceptor());
Object[] result;
try {
result = client.invoke("say", "brofe");
System.out.println(result[0]);
} catch (Exception e) {
e.printStackTrace();
}  
}
}

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-322599-1-1.html 上篇帖子: apache 测试工具ab说明 下篇帖子: Apache DBUtils入门(一)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表