ssm + webService 生成客户端

1:maven 依赖导入
org.apache.cxf
cxf-rt-frontend-jaxws
3.0.0
org.apache.cxf
cxf-rt-transports-http
3.0.0
 
2:在web.xml 中配置cxf
    
        CXFServlet
        org.apache.cxf.transport.servlet.CXFServlet
    
    
        CXFServlet
        /webservice/*
 
3:编写service接口和service实现类
package com.lanou.service;
 
import javax.jws.WebService;
 
@WebService
public interface HelloService {
 
public void sayHi(String text);
}


 
package com.lanou.service.impl;
 
import javax.jws.WebService;
 
import org.springframework.stereotype.Service;
 
import com.lanou.service.HelloService;
 
@Service
@WebService(endpointInterface="com.lanou.service.HelloService",serviceName="HelloService")
public class HelloServiceImpl implements HelloService{
 
@Override
public void sayHi(String text) {
System.out.println("hello,"+text);
}
 
}
 
4:创建spring-ws.xml

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jaxws="http://cxf.apache.org/jaxws"
xsi:schemaLocation="
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
        http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">
 
 
 
5:在spring-mybatis中导入spring-ws.xml



注意 : 在做完以上操作后

在 cmd 窗口中 自行一下操作 :
1: 找到apache-cxf-3.2.1 文件 下面bin目录的路径 并且复制路径
在dom窗口中操作 : cd 上面复制的路径
然后 f: 回车键(我的文件放在F盘下所以是 f:)

输入以下操作 : wsdl2java.bat -p com.lanou.service -client -encoding utf-8 -noAddressBinding
加上访问路径(例如:http://localhost:8080/jk/webservice/HelloService?wsdl)

然后在你的 apache-cxf-3.2.1 文件 下面bin目录的路径 下面找到相对应生成的文件夹 把它放到另一个新的项目中 就生成相对应的客户端了










你可能感兴趣的:(cxf)