第一步:在myeclipse中新建一个web项目名为myWs,
并导入依赖的jar包(cxf,spring,apache-commons相关)
1、commons-logging-1.1.1.jar
2、cxf-2.4.1.jar
3、geronimo-activation_1.1_spec-1.1.jar
4、geronimo-annotation_1.0_spec-1.1.1.jar
5、geronimo-javamail_1.4_spec-1.7.1.jar
6、geronimo-jaxws_2.2_spec-1.0.jar
7、geronimo-servlet_3.0_spec-1.0.jar
8、geronimo-stax-api_1.0_spec-1.0.1.jar
9、geronimo-ws-Metadata_2.0_spec-1.1.3.jar
10、jettison-1.3.jar
11、jetty-continuation-7.4.2.v20110526.jar
12、jetty-http-7.4.2.v20110526.jar
13、jetty-io-7.4.2.v20110526.jar
14、jetty-server-7.4.2.v20110526.jar
15、jetty-util-7.4.2.v20110526.jar
16、neethi-3.0.0.jar
17、saaj-api-1.3.jar
18、saaj-impl-1.3.2.jar
19、serializer-2.7.1.jar
cxf结合spring时所需jar包,此例子也需要这些,用到了spring上下文加载
(
spring-asm-3.0.5.RELEASE.jar
spring-beans-3.0.5.RELEASE.jar
spring-context-3.0.5.RELEASE.jar
spring-core-3.0.5.RELEASE.jar
spring-expression-3.0.5.RELEASE.jar
spring-aop-3.0.5.RELEASE.jar
spring-web-3.0.5.RELEASE.jar
)
20、wsdl4j-1.6.2.jar
21、xalan-2.7.1.jar
22、xercesImpl.jar
23、xml-resolver-1.2.jar
24、xmlschema-core-2.0.jar
第二步:在WEB-INF中创建基本的cxf-beans.xml内容如下(作用:主要做webservice接口属性配置,通过web.xml配置加载,文件名和位置可以顺便,web.xml配置会用到)
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws"
- xmlns:cxf="http://cxf.apache.org/core"
- xsi:schemaLocation="http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"
- default-autowire="byType" default-lazy-init="true">
- description>使用Apache CXF的Web Service配置文件,以下三个为固定配置文件(不需要创建)</import resource="classpath:meta-inf/cxf/cxf.xml" />
- import resource="classpath:meta-inf/cxf/cxf-servlet.xml" import resource="classpath:meta-inf/cxf/cxf-extension-soap.xml" <!--在这里配置相应内容-->
- beans>
第三部:在web.xml中加入cxf相应配置,内容如下:
第四步:创建webservice接口及实现类
- 1,创建接口
- @WebService()//此注解必须,里面name,portName,targetNamespace serviceName 可以不用指定
- public interface IHelloService {
- public String sayHello();
- }
- 2,创建实现类
- class HelloWorldServiceImpl implements IHelloService {
- public String sayHello() {
- System.out.println("It's my first webservice !");
- return "你已经成功调用sayHello()方法!";
- }
- }
第五步:配置cxf-beans.xml,加入以下内容:
第六步:发布webservice到tomcat
1,验证ws是否发布成功:
可以用SoapUi 软件测试接口
GOOD LUCKY!!!
远程具体调用方式请参考:CXF 入门之远程接口调用