欢迎来到天天文库
浏览记录
ID:57403024
大小:111.00 KB
页数:23页
时间:2020-08-16
《结合Spring框架地 CXF WebService编程实例.doc》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、结合Spring框架的CXFWebService编程实例1.需要的jar包,除了以上的jar包以外,还需要Spring包,这里就不一一列出了,根据项目的不同可能还需要其他的jar包,后期调试的时候根据控制台出现的问题,找出原因。2.Web.xml的配置:org.springframework.web.context.ContextLoaderListenercontextConfigLocationclasspath*:applicationContext-server.xmlorg.springframework.web.util.IntrospectorCleanupListener3、et>CXFServiceorg.apache.cxf.transport.servlet.CXFServletCXFService/*然后在src目录中,新建一个applicationContext-server.4、xml文件,这个applicationContext-server.xml需要在web.xml文件中引入(仔细查看上面在web.xml中的配置),当然不一定非要新建applicationContext-server.xml,也可以写在applicationContext.xml中.如果applicationContext-server.xml没有写在src下面则web.xml中的文件应该这样写contextConfigLocation5、ue>/WEB-INF/classes/config/spring/*.xml(这里解释下:自己查看下编译后的applicationContext-server.xml的位置是在项目)。我这是在src下面新建了config和spring两个包,再在里面新建的applicationContext-server.xml(我这里够啰嗦的了,但是为了你们明白点,别整晕了啊,哈哈哈)。下面是applicationContext-server.xml中的容:6、1.0"encoding="UTF-8"?>7、g/schema/beans.springframework.org/schema/beans/spring-beans-2.5.xsd.springframework.org/schema/aop.springframework.org/schema/aop/spring-aop-2.5.xsdcxf.apache.org/jaxwscxf.apache.org/schemas/jaxws.xsd.springframework.org/schema/tx.springframework.org/schema/tx/spring-8、tx-2.5.xsd">
3、et>CXFServiceorg.apache.cxf.transport.servlet.CXFServletCXFService/*然后在src目录中,新建一个applicationContext-server.
4、xml文件,这个applicationContext-server.xml需要在web.xml文件中引入(仔细查看上面在web.xml中的配置),当然不一定非要新建applicationContext-server.xml,也可以写在applicationContext.xml中.如果applicationContext-server.xml没有写在src下面则web.xml中的文件应该这样写contextConfigLocation5、ue>/WEB-INF/classes/config/spring/*.xml(这里解释下:自己查看下编译后的applicationContext-server.xml的位置是在项目)。我这是在src下面新建了config和spring两个包,再在里面新建的applicationContext-server.xml(我这里够啰嗦的了,但是为了你们明白点,别整晕了啊,哈哈哈)。下面是applicationContext-server.xml中的容:
5、ue>/WEB-INF/classes/config/spring/*.xml
6、1.0"encoding="UTF-8"?>7、g/schema/beans.springframework.org/schema/beans/spring-beans-2.5.xsd.springframework.org/schema/aop.springframework.org/schema/aop/spring-aop-2.5.xsdcxf.apache.org/jaxwscxf.apache.org/schemas/jaxws.xsd.springframework.org/schema/tx.springframework.org/schema/tx/spring-8、tx-2.5.xsd">
7、g/schema/beans.springframework.org/schema/beans/spring-beans-2.5.xsd.springframework.org/schema/aop.springframework.org/schema/aop/spring-aop-2.5.xsdcxf.apache.org/jaxwscxf.apache.org/schemas/jaxws.xsd.springframework.org/schema/tx.springframework.org/schema/tx/spring-
8、tx-2.5.xsd">
此文档下载收益归作者所有