
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-core</artifactId>
<version>3.1.5</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>3.1.5</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>3.1.5</version>
</dependency>
package com.example.tuo.webservice;
import javax.jws.WebService;
@WebService
public interface HelloWorld {
public String sayHello(String sb);
}
package com.example.tuo.webservice.impl;
import javax.jws.WebService;
import com.example.tuo.webservice.HelloWorld;
@WebService
public class HelloWorldImpl implements HelloWorld{
public String sayHello(String sb) {
// TODO Auto-generated method stub
return "Hello world," +sb;
}
}
package com.example.tuo.server;
import org.apache.cxf.jaxws.JaxWsServerFactoryBean;
import com.example.tuo.webservice.HelloWorld;
import com.example.tuo.webservice.impl.HelloWorldImpl;
public class Server {
public static void main(String[] args){
System.out.println("web service starting...");
JaxWsServerFactoryBean wsSvrFactoryBean = new JaxWsServerFactoryBean();
String address = "http://127.0.0.1/helloWorld";
wsSvrFactoryBean.setAddress(address);
wsSvrFactoryBean.setServiceClass(HelloWorld.class);
HelloWorld implementor = new HelloWorldImpl();
wsSvrFactoryBean.setServiceBean(implementor);
wsSvrFactoryBean.create();
System.out.println("web service started...");
}
}

PS:由于我们还没有绑定成员,server会抛出异常:No binding operation info while invoking unknown method with params unknown.
至此,我们的第一个基于CXF的webservice已经编写完成并发布出来了。
WebService -- Java 实现之 CXF (WebService 服务器端接口)
原文:http://www.cnblogs.com/atuotuo/p/6227830.html