项目中使用的是SpringBoot整合webservce (spring整合cxf需添加cxf-rt-frontend-jaxws,cxf-rt-transports-http依赖) (建议使用)

添加依赖

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.wyj</groupId>
<artifactId>wyj-interface-service</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>wyj-interface-service</name>
<description>Demo project for Spring Boot</description>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.9.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<!-- http -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.4</version>
</dependency>

<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.1.41</version>
</dependency>
<!-- 热部署模块 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 这个需要为 true 热部署才有效 -->
</dependency>

<!-- CXF webservice -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
<version>3.1.11</version>
</dependency>
<!-- CXF webservice -->

<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

服务端接口
package com.wyj.webservice;

import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;

/**
* webservice测试接口
*
*
* @author:WangYuanJun
* @date:2017年12月19日 下午9:36:49
*/
@WebService(name = "TestService", // 暴露服务名称
targetNamespace = "http://service.wyj.com"// 命名空间,一般是接口的包名倒序
)
public interface TestService {

@WebMethod
@WebResult(name = "String", targetNamespace = "")
String sendMessage(@WebParam(name = "username") String username);
}
 

服务端接口实现
package com.wyj.webservice;

import javax.jws.WebService;

import org.springframework.stereotype.Component;

/**
* webservice测试接口实现
*
*
* @author:WangYuanJun
* @date:2017年12月19日 下午9:37:20
*/
@WebService(serviceName = "TestService", // 与接口中指定的name一致
targetNamespace = "http://service.wyj.com", // 与接口中的命名空间一致,一般是接口的包名倒
endpointInterface = "com.wyj.webservice.TestService"// 接口地址
)
@Component
public class TestServiceImpl implements TestService {

@Override
public String sendMessage(String username) {

return "hello "+username;
}

}
 

cxf配置
package com.wyj.webservice;

import javax.xml.ws.Endpoint;

import org.apache.cxf.Bus;
import org.apache.cxf.jaxws.EndpointImpl;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
/**
* cxf配置
*
*
* @author:WangYuanJun
* @date:2017年12月19日 下午9:38:24
*/
@Configuration
public class CxfConfig {

@Autowired
private Bus bus;

@Autowired
private TestService testService;

@Bean
public Endpoint endpoint(){
EndpointImpl endpoint = new EndpointImpl(bus, testService);
endpoint.publish("/TestService");
return endpoint;
}
}
 

默认服务在Host:port/services/*路径下 
将TestService接口发布在了路径/services/TestService下,wsdl文档路径为,http://localhost:8080/services/TestService?wsdl

基于cxf的客户端调用webservice接口
package webservice;

import org.apache.cxf.endpoint.Client;
import org.apache.cxf.jaxws.endpoint.dynamic.JaxWsDynamicClientFactory;
import org.junit.Test;

/**
* webservice客户端
*
*
* @author:WangYuanJun
* @date:2017年12月19日 下午9:39:49
*/
public class WebServiceTest {

@Test
public void testSend1(){

// 创建动态客户端
JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
Client client = dcf.createClient("http://localhost:8080/services/TestService?wsdl");

// 需要密码的情况需要加上用户名和密码
// client.getOutInterceptors().add(new ClientLoginInterceptor(USER_NAME,PASS_WORD));
Object[] objects = new Object[0];
try {

// invoke("方法名",参数1,参数2,参数3....);
objects = client.invoke("sendMessage", "wyj");
System.out.println("返回数据:" + objects[0]);
} catch (java.lang.Exception e) {
e.printStackTrace();
}
}
}
————————————————
 

原文地址:https://www.cnblogs.com/lixiangang/p/11536249.html