4.3、使用CXF发布SOAP1.2协议的服务
在接口上加入如下注解:
@BindingType(SOAPBinding.SOAP12HTTP_BINDING)
再重新发布服务端。注意:每次我们重新发布服务端的时候,端口都会被占用,需要我们手动结束任务,清理出端口来。
示例代码如下:
package com.itheima.webservice.cxf.server;
import org.apache.cxf.interceptor.LoggingInInterceptor;
import org.apache.cxf.interceptor.LoggingOutInterceptor;
import org.apache.cxf.jaxws.JaxWsServerFactoryBean;
重新发布服务端和客户端,服务端控制台打印出的结果如下:
----------------------------
ID: 1
Address: http://127.0.0.1:12345/weather
Encoding: UTF-8
Http-Method: POST
Content-Type: text/xml; charset=UTF-8
Headers: {Accept=[*/*], Cache-Control=[no-cache], connection=[keep-alive], Content-Length=[240], content-type=[text/xml; charset=UTF-8], Host=[127.0.0.1:12345], Pragma=[no-cache], SOAPAction=[""], User-Agent=[Apache-CXF/3.2.6]}
Payload:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body><ns2:queryWeather xmlns:ns2="http://server.cxf.webservice.itheima.com/">
<arg0>山西省运城市永济市</arg0></ns2:queryWeather>
</soap:Body>
</soap:Envelope>
--------------------------------------
from client...山西省运城市永济市
九月 22, 2018 12:18:05 上午 org.apache.cxf.services.WeatherInterfaceService.WeatherInterfacePort.WeatherInterface
信息: Outbound Message
---------------------------
ID: 1
Response-Code: 200
Encoding: UTF-8
Content-Type: text/xml
Headers: {}
Payload:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body><ns2:queryWeatherResponse xmlns:ns2="http://server.cxf.webservice.itheima.com/">
<return>暖且晴</return></ns2:queryWeatherResponse>
</soap:Body>
</soap:Envelope>
--------------------------------------
4.5、实现-客户端
第一步:生成客户端代码
wsdl2java命令是CXF提供的生成客户端的工具,它和wsimport类似,可以根据WSDL生成客户端代码。
wsdl2java -p com.itheima.cxf.weather -d . http://127.0.0.1:12345/weather?wsdl
演示效果如下图所示:
wsdl2java常用参数:
-d,指定客户端代码输出目录
-p,指定客户端代码输出包名,如果不指定该参数,默认包名是WSDL的命名空间的倒序
示例代码如下:
package com.itheima.cxf.weather.client;
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
import com.itheima.cxf.weather.WeatherInterface;
public class WeatherClient {
public static void main(String[] args) {
服务端效果截图如下:
客户端效果截图如下:
五、CXF + Spring整合发布SOAP协议的服务
5.1、服务端-示例使用Web Project
开发步骤:
第一步:在MyEclipse中创建Web Project,之后在lib目录下引入jar包,然后添加至构建路径(在Eclipse中创建动态的Web Project)
第二步:创建SEI接口
第三步:创建SEI实现类
我们可以直接拷贝之前没有整合Spring时的代码:创建SEI接口的代码和创建SEI实现类的代码。
因为我们不在WeatherServer.java中发布服务端了,而是在Tomcat中发布服务端,所以我们需要删掉WeatherServer.java文件。
第四步:整合Spring,
配置spring配置文件,applicationContext.xml,在Spring中使用 <jaxws:server 标签来发布服务,该标签是对 JaxWsServerFactoryBean类 的封装,需要设置:1.设置服务地址;2.设置服务接口;3.设置服务实现类
示例代码如下:
applicationContext.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:jaxrs="http://cxf.apache.org/jaxrs" xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd">
第五步:配置web.xml,
配置spring配置文件地址和配置加载的listener,配置CXF的servlet
示例代码如下:
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<display-name>day46_03_Webservice_cxf_spring_server</display-name>
第六步:部署到tomcat下,启动tomcat
注意:启动tomcat时控制台会出现一个错误: Error configuring application listener of class [org.springframework.web.context.ContextLoaderListener],如下图所示:
解决办法:
右击项目点击“Properties”,然后会出现一个弹框,弹框中找到“Deployment Assembly” 点击,如下图所示:
然后点击“Add” 出现如下图:
选择 Jave Build Path Entries,把程序用于的Library加入进来,如下图所示:
加入成功后的截图如下:
重新运行Server,即重新启动tomcat,控制台看不到这个问题了!噢耶
第七步:测试服务,阅读使用说明书
WSDL地址规则:http://ip:端口号/项目名称/servlet拦截路径/服务名称?wsdl
例如:http://127.0.0.1:8080/day46_03_Webservice_cxf_spring_server/webservice/weather?wsdl
效果截图如下:
说明界面地址:http://ip:端口号/项目名称/servlet拦截路径
例如:http://127.0.0.1:8080/day46_03_Webservice_cxf_spring_server/webservice
说明界面如下图所示:
5.4、客户端-示例使用Java Project
开发步骤:
第一步:引入jar包
第二步:生成客户端代码
第三步:配置spring配置文件,applicationContent.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:jaxrs="http://cxf.apache.org/jaxrs" xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd">
第四步:从spring的上下文中获取服务实现类
第五步:调用查询方法,打印
客户端代码示例如下:
WeatherClient.java
package com.itheima.cxf.weather.client;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.itheima.cxf.weather.WeatherInterface;
public class WeatherClient {
public static void main(String[] args) {
运行服务端代码,没有报错,成功!
客户端控制台截图如下所示:
服务端控制台截图如下所示:
回顾之前的内容
CXF的介绍、安装和配置
CXF是一个开源的webservice的框架,提供很多成熟的功能,可以实现快速开发
CXF支持的协议:SOAP1
.1/
1.2,REST
CXF支持的数据格式:XML,
JSON
安装和配置
安装JDK,建议
1.8
解压cxf压缩包到指定目录,配置CXF_HOME
CXF_HOME加入Path中
测试成功,在cmd中输入wsdl2java –h
使用CXF发布SOAP协议的服务
服务端
第一步:引入jar包
第二步:创建SEI接口,要在
`接口`上加入注解:@WebService
第三步:创建SEI实现类
第四步:发布服务,使用JaxWsServerFactoryBean发布服务,设置
3个参数,
1.服务接口;
2.服务实现类;
3.服务地址
第五步:测试服务
客户端
第一步:引入jar包
第二步:生成客户端代码
第三步:使用JaxWSProxyFactoryBean调用服务端,设置
2个参数,
1.服务接口;
2.服务地址
第四步:获取实现类的实例,调用查询方法
CXF + Spring整合发布SOAP协议的服务
服务端
第一步:在MyEclipse中创建Web Project,之后在lib目录下引入jar包,然后添加至构建路径(在Eclipse中创建 动态的Web Project)
第二步:创建SEI接口
第三步:创建SEI实现类
第四步:配置Spring配置文件,applicationContext.xml,
`使用<jaxws:server>标签`
第五步:配置web.xml,配置spring配置文件地址和配置加载的listener,以及CXF的servlet
第六步:部署tomcat下,启动tomcat
第七步:测试服务是否发布成功
WSDL地址规则:http:
使用CXF发布REST的服务(大企业中使用)
7.1、什么是REST
REST 是一种软件架构模式,只是一种风格,,REST服务采用 HTTP 做传输协议,REST 对于 HTTP 的利用实现精确的资源定位。
Rest要求对资源定位更加准确,如下:
非rest方式:http://ip:port/queryUser.action?userType=student&id=001
Rest方式:http://ip:port/user/student/query/001
Rest方式表示互联网上的资源更加准确,但是也有缺点,可能目录的层级较多不容易理解。
REST 是一种软件架构理念,现在被移植到Web服务上,那么在开发Web服务上,偏于面向资源的服务适用于REST。
REST简单易用,效率高(不用生成客户端)。
SOAP 成熟度较高,安全性较好。
注意:REST 不等于WebService,JAX-RS 只是将REST 设计风格应用到Web 服务开发上。
定义:REST就是一种编程风格,它可以精确定位网上资源(服务接口、方法、参数)。
REST支持数据格式:XML、JSON
REST支持发送方式:GET、POST
7.2、需求
第一个:查询单个学生
第二个:查询多个学生
7.3、实现-服务端
开发步骤:
第一步:导入jar包
第二步:创建学生pojo类,
要在类上加入注解:@ XmlRootElement
示例代码如下:
package com.itheima.cxf.rest.pojo;
import java.util.Date;
import javax.xml.bind.annotation.XmlRootElement;
第三步:创建SEI接口
示例代码如下:
package com.itheima.cxf.rest.server;
import java.util.List;
import javax.jws.WebService;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import com.itheima.cxf.rest.pojo.Student;
第四步:创建SEI实现类
示例代码如下:
package com.itheima.cxf.rest.server;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.itheima.cxf.rest.pojo.Student;
第五步:发布服务,
使用JAXRSServerFactoryBean发布REST服务,发布前,需要设置3个参数,1.设置服务实现类;2.设置资源类;3.设置服务地址
,然后我们启动服务端服务
示例代码如下:
package com.itheima.cxf.rest.server;
import org.apache.cxf.jaxrs.JAXRSServerFactoryBean;
public class StudentServer {
public static void main(String[] args) {
第六步:测试服务
1、访问服务地址:http://127.0.0.1:12345/user/student/query/110
查询单个学生,返回XML数据,如下图所示:
2、访问服务地址:http://127.0.0.1:12345/user/student/query/110
查询单个学生,返回JSON数据,如下图所示:
需要先修改学生接口中配置的注解为@Produces(MediaType.APPLICATION_JSON),之后再重新发布服务
3、访问服务地址:http://127.0.0.1:12345/user/student/queryList/110
查询多个学生,返回XML数据,如下图所示:
4、访问服务地址:http://127.0.0.1:12345/user/student/queryList/110
查询多个学生,返回JSON数据,如下图所示:
需要先修改学生接口中配置的注解为@Produces(MediaType.APPLICATION_JSON),之后再重新发布服务
注意事项:
如果服务端发布时指定请求方式是GET(POST),客户端必须使用GET(POST)访问服务端,否则会报如下异常:
如果在同一方法上同时指定XML和JSON媒体类型,在GET请求下,默认返回XML数据,在POST请求下,默认返回JSON数据。
可以通过:
`http://127.0.0.1:12345/user/student/queryList/110?_type=json` 或者
`http://127.0.0.1:12345/user/student/queryList/110?_type=xml` 进行切换
7.4、实现-客户端
REST服务不用生成客户端代码,因为服务端返回来的就是XML数据或者JSON数据,我们只需要通过URL就能拿到数据进行解析就可以了,所以不需要生成客户端代码了。那么如何解析URL呢?方式一:使用dom4j框架。
可以自学一下httpclient框架,该框架是专门发送Http请求,然后从URL中获取数据的框架。自学网址:http://hc.apache.org/httpclient-3.x/
今天我们不使用httpclient框架,还是使用HttpURLConnection调用方式实现服务端调用
示例代码如下:
package com.itheima.cxf.rest.client;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.HttpURLConnection;
import java.net.URL;
八、CXF + Spring整合发布REST的服务
8.1、服务端-示例使用Web Project
开发步骤:
第一步:创建Web Project项目(引入jar包)
第二步:创建POJO类
第三步:创建SEI接口
第四步:创建SEI实现类
第五步:配置Spring配置文件,applicationContext.xml,
使用 <jaxrs:server> 标签,需要设置2个参数:1.服务地址;2.服务实现类
示例代码如下:
<?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:jaxrs="http://cxf.apache.org/jaxrs" xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd">
第六步:配置web.xml
示例代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<display-name>day46_07_Webservice_cxf_rest_spring_server</display-name>
第七步:将项目部署到tomcat下,启动tomcat,控制台没有报错即可。
第八步:测试服务
REST服务的使用说明书地址:http://127.0.0.1:8080/day46_07_Webservice_cxf_rest_spring_server/webservice/user?_wadl
,如下图所示:
8.2、客户端-示例使用Java Project,使用ajax调用方式
示例代码如下:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script type="text/javascript">
function queryStudent() {
演示效果如下图所示:
九、综合案例
9.1、需求
集成(调用)公网手机号归属地查询服务
对外发布自己的手机号归属地查询服务
提供查询界面
9.2、分析
9.3、实现
开发步骤:
第一步:创建Web Project项目(引入jar包)
第二步:生成公网客户端代码
第三步:创建SEI接口
示例代码如下:
package com.itheima.mobile.server;
import javax.jws.WebService;
第四步:创建SEI实现类,因为最后我们调用公网客户端代码的时候,调用的是服务接口中的实现类,所以我们要把公网客户端的服务接口给注入进来。公网客户端的服务接口为:MobileCodeWSSoap
示例代码如下:
package com.itheima.mobile.server;
import com.itheima.mobile.MobileCodeWSSoap;
第五步:创建queryMobile.jsp
示例代码如下:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>手机号归属地查询网站</title>
</head>
<body>
<form action="queryMobile.action" method="post">
手机号归属地查询:<input type="text" name="phoneNum"/><input type="submit" value="查询"><br/>
查询结果:${result}
</form>
</body>
</html>
第六步:创建MobileServlet.java
示例代码如下:
package com.itheima.mobile.server.servlet;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.context.ApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
import com.itheima.mobile.server.MobileInterface;
public class MobileServlet extends HttpServlet {
private MobileInterface mobileServer;
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String phoneNum = request.getParameter("phoneNum");
if (null != phoneNum && "".equals(phoneNum)) {
第七步:配置spring配置文件,applicationContext.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:jaxrs="http://cxf.apache.org/jaxrs" xmlns:cxf="http://cxf.apache.org/core"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd">
第八步:配置web.xml
示例代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<display-name>day46_09_Webservice_eg_mobile</display-name>
第九步:将项目部署到tomcat下,启动tomcat
第十步:测试
测试服务是否发布成功,访问地址:http://127.0.0.1:8080/day46_09_Webservice_eg_mobile/webservice,如下图所示:
点击WSDL地址:http://127.0.0.1:8080/day46_09_Webservice_eg_mobile/webservice/mobile?wsdl,查看上下文,没有问题。如下图所示:
测试查询界面,查询网址:http://127.0.0.1:8080/day46_09_Webservice_eg_mobile/queryMobile.action,如下图所示:
查询结果截图如下:
查询结果截图如下: