加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

cfx webservice入门详细步骤

发布时间:2020-12-16 23:22:36 所属栏目:安全 来源:网络整理
导读:第一步导入cfx相关包下载地址: http://cxf.apache.org/download.html ? 第二步配置web.xml !-- cfx webSerivice -- ??? servlet? ??? descriptionApache CXF Endpoint/description? ??? display-namecxf/display-name? ??? servlet-namecxf/servlet-name? ??

第一步导入cfx相关包下载地址: http://cxf.apache.org/download.html

?

第二步配置web.xml

<!-- cfx webSerivice -->

??? <servlet>?

??? <description>Apache CXF Endpoint</description>?

??? <display-name>cxf</display-name>?

??? <servlet-name>cxf</servlet-name>?

??? <servlet-class>

org.apache.cxf.transport.servlet.CXFServlet

</servlet-class>?

??? <load-on-startup>1</load-on-startup>?

? ? </servlet>?

??? <servlet-mapping>?

??? ? <servlet-name>cxf</servlet-name>?

??? ? <url-pattern>/services/*</url-pattern>?

??? </servlet-mapping>?

??? <session-config>?

??? ? <session-timeout>60</session-timeout>?

??? </session-config>

第三步在web-inf下加入cfx-servlet.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:soap="http://cxf.apache.org/bindings/soap"

????? xsi:schemaLocation="

http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd

http://cxf.apache.org/bindings/soap http://cxf.apache.org/schemas/configuration/soap.xsd

http://cxf.apache.org/jaxws

http://cxf.apache.org/schemas/jaxws.xsd">

<!-- ;服务接口? -->

? <jaxws:server id="jaxwsService" serviceClass="com.uu.service.IService"

address="/test"> <!—address为服务发布二级地址 完整地址为 /项目发布名称/cfx拦截地址/address?? (cfx拦截地址在web.xml中url-pattern标签中配置) -->

? ???? <jaxws:serviceBean>

??????? <!--服务实现类? -->

? ????????????? <bean class=" com.uu.service.impl.Service " />

? ???? </jaxws:serviceBean>

? </jaxws:server>

</beans>

第四步编写接口及实现类

IService 接口

package com.uu.service;

@WebService

public interface IService

{

???

??? @WebMethod

??? String test(@WebParam String param);

?}

Service实现类:

package com.uu.service.impl;

public class QuoteService implements IQuoteService

{

??? @Override

??? public String test(String param)

??? {

?????? return "Hello,"+param;

??? }

?

}

第五步???? 单元测试

@Test

public void test3()

{

??? JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();?

??? factory.getInInterceptors().add(new LoggingInInterceptor());?

??? factory.getOutInterceptors().add(new LoggingOutInterceptor());?

??? factory.setServiceClass(IService.class);?

??? factory.setAddress("http://localhost:8081/项目名称/services/test");?

??? IService client = (IService) factory.create();

??? String msg =? client.test("kinglo");

??? System.out.println(msg);

}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读