`
xiaoliang330
  • 浏览: 115507 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

webService使用总结

    博客分类:
  • web
 
阅读更多
webService 是什么就不解释了,webservice有很多种开发方式,也有很多种调用方式,自己实际中用到的一种现在描述如下:

   服务端的开发使用到apache CXF的开发方式,比较效率。
 
   1.新建一个web项目,把apache-cxf-x.x.x\lib下的jar包添加到项目中,(加哪些看具体需要)

   2.写好你的接口与实现类。(这里数据绑定方式使用cxf默认的jaxb,你也可以用其它的比如    aegis)
   3.写好了之后就是发布服务了,发布方式也有好几种,这里采用的是cxf+spring整合在tomcat下发布的方式.具体的配置如下:  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:aop="http://www.springframework.org/schema/aop" 
	xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:jaxws="http://cxf.apache.org/jaxws"
	xmlns:context="http://www.springframework.org/schema/context" 
	xsi:schemaLocation="
       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/tx 
       http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
       http://www.springframework.org/schema/aop 
       http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
       http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd
       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"
	default-lazy-init="true">
	

	<import resource="classpath:META-INF/cxf/cxf.xml" />
	<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
	<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
	

	<jaxws:endpoint id="importDataEndPoint" implementor="#importDataService" address="/ImportDataService" />
	<jaxws:endpoint id="dashboardDataEndPoint" implementor="#dashboardDataService" address="/DashboardDataService" />
	
	<jaxws:endpoint id="inventoryEndPoint" implementor="#inventoryService" address="/InventoryService" />
	<jaxws:endpoint id="emailEndPoint" implementor="#emailService" address="/EmailService" />
	
	<jaxws:endpoint id="importDataDBPointLoadingEndPoint" implementor="#importDataDBPointLoadingService" address="/ImportDataDBPointLoadingService" />
	<jaxws:endpoint id="dashboardDataCalculationEndPoint" implementor="#dashboardDataCalculationService" address="/DashboardDataCalculationService" />
	<jaxws:endpoint id="upsModulesEndPoint" implementor="#upsModulesService" address="/UpsModulesService" />
	<bean id="SpringContextHolder" lazy-init="false" class="com.accentrix.nttca.dcms.dashboard.util.SpringContextHolder" />

</beans>
<!-- END SNIPPET: beans -->
   



配置文件中只列出了跟cxf发布服务有关的,涉及到的接口名虽然原名复制了过来,但看看也没什么关系


当然,你还需要在你的web.xml文件中配置cxf的servlet,具体如下:

<?xml version="1.0" encoding="UTF-8"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. 
	The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 
	Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
	See the License for the specific language governing permissions and limitations under the License. -->

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath*:META-INF/spring/applicationContext*.xml</param-value>
	</context-param>

	<listener>
		<listener-class>
			org.springframework.web.context.ContextLoaderListener
		</listener-class>
	</listener>

	<servlet>
		<servlet-name>CXFServlet</servlet-name>
		<display-name>CXF Servlet</display-name>
		<servlet-class>
			org.apache.cxf.transport.servlet.CXFServlet
		</servlet-class>
		<load-on-startup>1</load-on-startup>
	</servlet>

	<servlet-mapping>
		<servlet-name>CXFServlet</servlet-name>
		<url-pattern>/*</url-pattern>
	</servlet-mapping>
</web-app>




这样,发布服务就成了启动tomcat了,查看发布是否成功,看以访问这个链接:http://localhost:8080/xx/xx


客户端的调用

客户端调用有很多种形式,比如常见的可能是要用到AXIS来生成一堆客户端代码放进客户端程序,然后在客户端程序的配置文件中如下配置:xxxx.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans.xsd
		http://cxf.apache.org/jaxws 
		http://cxf.apache.org/schemas/jaxws.xsd">

<jaxws:client id="importDataService" serviceClass="xxxx.dashboard.service.ImportDataService"
		address="http://xxxx:8080/xxxxx/ImportDataService" />

     ....



然后呢,在你的程序里就可以调用webservice的接口了,我写了一个调用接口的工具类:

import org.springframework.context.support.ClassPathXmlApplicationContext;

public class CxfUtil {

    public static <T> T getService(String name, Class<T> requiredType) {
        return ApplicationContextHolder.context.getBean(name, requiredType);
    }

    public static <T> T getService(Class<T> requiredType) {
        return ApplicationContextHolder.context.getBean(requiredType);
    }

    private static class ApplicationContextHolder {
        private static ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(
                new String[] { "META-INF/xxxx.xml" });
    }
}


这样,在你的代码中就可以如下实现调用接口方法了:
ImportDataService  ds = CxfUtil .getService(ImportDataService.class);
       ds.doxxx();
       ....


发布与调用的方式有很多种,看你的需要了。。。


分享到:
评论

相关推荐

    webservice使用总结

    本文将对Web服务的使用进行详细总结,涵盖了基础概念、技术栈、实现过程以及常见问题。 一、Web服务基础 1.1 WebService定义:WebService是一种通过XML(可扩展标记语言)进行通信的网络应用,它可以提供和消费API...

    delphi开发webservice经验总结.pdf

    delphi开发webservice经验总结

    delphi开发webservice经验总结

    用delphi调用dotnet开发的webservice经验总结,包含汉字乱码,soapheader安全验证的问题。

    JavaScript调用WebService实例总结

    以下是对这个实例的详细解析和相关知识点的总结: 1. JavaScript调用机制: JavaScript通过XMLHttpRequest对象或者ActiveXObject(在旧版IE浏览器中)来实现对WebService的调用。在示例中,使用了ActiveXObject,这...

    WebService学习总结

    WebService学习过程中,知识点的总结,和例子。

    WebService和Ajax总结

    **WebService和Ajax总结** 在IT领域,WebService和Ajax是两种重要的技术,它们分别在Web应用程序的交互和用户体验提升上发挥了重要作用。本篇文章将全面探讨这两种技术的原理、应用及其在.NET环境下的实现。 **一...

    nodejs和Java调用webservice接口总结.docx

    ### Node.js 和 Java 调用 WebService 接口总结 #### 一、Java 实现方式 在 Java 中,调用 WebService 接口通常涉及使用 Apache CXF 或其他类似的库来生成客户端代码并进行调用。以下是具体的步骤: ##### 1. ...

    cxf实现webservice 常用注解总结

    CXF 实现WebService常用注解总结 CXF 实现WebService时,使用注解来指定与WebService相关的元数据,简化WebService的开发。下面总结了CXF实现WebService常用注解。 @WebService注解 @WebService注解标记Java类,...

    闲着没事Hessian开发WebService的总结(一)

    标题中的“闲着没事Hessian开发WebService的总结(一)”表明这是一篇关于使用Hessian框架开发Web服务的文章,作者可能在其中分享了个人的经验和理解。Hessian是一种轻量级的远程调用协议,它允许Java和.NET之间进行...

    eclipse创建Webservice以及调用Webservice总结

    eclipse创建Webservice以及调用Webservice总结

    WebService设计总结 Sample代码

    4. **C#与WebService**:在C#中,使用`[WebService]`和`[WebMethod]`特性标记类和方法,即可将其公开为WebService。例如,`[WebService(Namespace = "http://example.com")]`定义了命名空间,`[WebMethod]`则标记了...

    java使用XFire调用webService接口

    "Java 使用 XFire 调用 webService 接口" 在本文中,我们将学习如何使用 XFire 框架在 Java 中调用 webService 接口。XFIRE 是一个基于 Java 的开源框架,用于简化 Web 服务的开发和集成。下面,我们将通过一个简单...

    java调用webservice方法总结

    本文将对两种主要的Java调用WebService的方法进行总结。 **一、使用JDK Web服务API** 1. **创建WebService端点**: 首先,你需要定义一个@WebService注解的类,包含@WebMethod注解的方法。这个类就是你的服务接口,...

    WebService使用JDK发布

    总结,使用JDK发布Web服务涉及的主要知识点包括:JAX-WS API、SEI、WSDL、HTTP服务器以及客户端调用。通过这些知识点,开发者可以在Java环境中方便地创建、部署和测试Web服务,实现不同系统的互联互通。

    Axis2开发webservice总结

    Axis2开发webservice总结,资源一般,希望对大家有用

    jquery调用webservice总结

    总结起来,这个示例展示了如何使用 jQuery 的 AJAX 功能与 WebService 进行通信,无论是无参数还是带参数的调用,以及如何处理返回的数据。理解这些概念对于构建基于 JavaScript 的前端应用程序并与后端服务进行交互...

    java 调用webservice的几种方法总结

    Java 调用 Webservice 的几种方法总结中,主要介绍了使用 JDK Web 服务 API、Axis 和 XFire 等方法来调用 Webservice。下面将对每种方法进行详细的介绍。 使用 JDK Web 服务 API 使用 JDK Web 服务 API 可以实现...

    WebService一——使用JDK开发WebService

    总结,使用JDK开发WebService涉及的关键点包括:理解SOAP、WSDL和UDDI等协议,使用JAX-WS提供的注解和工具,以及如何在客户端和服务器端交互。通过这个过程,开发者可以构建起跨平台、跨语言的网络通信系统,极大地...

Global site tag (gtag.js) - Google Analytics