本文主要通过示例详细介绍了如何使用CXF进行webservice服务服务端的开发和服务发布,以及如何通过CXF为已经发布的webservice服务生成客户端代码,并详细演示了通过生成的客户端代码进行服务的调用,希望对有需要的小伙伴们有所帮助!
我是直接在cxf官网下载的apache-cxf-3.6.2版本的压缩包,大家直接去官网下载即可,这里需要注意的点是要配置CXF_HOME环境变量并将cxf的bin目录添加到PATH中
注意: 如果不清楚是否配置成功cxf工具,可以在命令行中直接执行wsdl2java进行验证
cxf相关依赖如下(这里我使用的版本较新,为4.0.3)
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>4.0.3</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>4.0.3</version>
</dependency>
<!-- Jetty is needed if you're using the CXFServlet -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>4.0.3</version>
</dependency>
package server;
import jakarta.jws.WebParam;
import jakarta.jws.WebService;
@WebService
public interface HelloWorld {
String sayHi(@WebParam(name = "text") String text);
}
package server;
public class HelloWorldImpl implements HelloWorld {
public String sayHi(String text) {
return "Hello " + text;
}
}
package server;
import org.apache.cxf.jaxws.JaxWsServerFactoryBean;
public class Server {
protected Server() throws Exception {
System.out.println("Starting Server");
HelloWorldImpl implementor = new HelloWorldImpl();
JaxWsServerFactoryBean svrFactory = new JaxWsServerFactoryBean();
svrFactory.setServiceClass(HelloWorld.class);
svrFactory.setAddress("http://localhost:9000/helloWorld");
svrFactory.setServiceBean(implementor);
svrFactory.create();
}
public static void main(String[] args) throws Exception {
new Server();
System.out.println("Server ready...");
Thread.sleep(5 * 60 * 1000);
System.out.println("Server exiting");
System.exit(0);
}
}
这里通常有2种方式可以访问webservice服务端
如果有webservice服务端接口的jar,那么可以直接通过JaxWsProxyFactoryBean创建代理的方式访问webservice服务
package client;
import org.apache.cxf.ext.logging.LoggingFeature;
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
import server.HelloWorld;
public final class Client {
private Client() {
}
public static void main(String[] args) throws Exception {
JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
factory.getFeatures().add(new LoggingFeature());
factory.setAddress("http://localhost:9000/helloWorld");
HelloWorld client = factory.create(HelloWorld.class);
System.out.println(client.sayHi("World"));
}
}
如果没有webservice服务端接口的jar,可以通过cxf提供的wsdl2java工具生成webservice客户端
wsdl2java -p ws.demo.client -d /Users/apple/Documents/idea/jaxws_factory_bean_client/src/main/java/ -client http://localhost:9000/helloWorld?wsdl
(1) -p 指定其wsdl的命名空间,也就是要生成代码的包名.
(2) -d 指定要产生代码所在目录.
(3) -client 生成客户端测试web service的代码.
HelloWorld为webservice服务端定义的webservice服务接口
HelloWorld_HelloWorldPort_Client为调用webservice客户端,可以直接运行调用webservice服务端
如果调用的wsdl地址有变动,可以修改HelloWorldService中的WSDL_LOCATION值为新的wsdl地址