Web Service简单入门示例

Web Service简单入门示例

大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。

Web Service简单入门示例

    我们一般实现Web Service的方法有非常多种。当中我主要使用了CXF Apache插件和Axis 2两种。

    Web Service是应用服务商为了解决每一个问题而提供的在线服务方案,其主要採用了SOAP(Simple Object Access Protocol)协议,传输数据格式使用XML格式来描写叙述。因此也具有跨平台的特性。

  

web广泛用到的技术:
  1. TCP/IP:通用
    网络协议。被各种设备使用
  2. HTML
    标准通用标记语言下的一个应用):通用用户界面,能够使用HTML标签显示数据
  3. Java:写一次能够在不论什么系统执行的通用
    编程语言,由于java具有跨平台特性
  4. XML
    标准通用标记语言下的一个子集):通用数据表达语言,在web上传送结构化数据的easy方法
他们的特点是其开放性。跨平台性,开放性正是Web services的基础。

以下是使用CXF Apache的插件实现Web Service的一个简单入门实例

1========新建一个服务接口

package com.clark;

import javax.jws.WebParam;
import javax.jws.WebService;

@WebService
public interface IHelloWorld {
    
    public String sayHello(@WebParam(name=”name”)String name);
    
    public int plus(int a,int b);
}
2========服务接口实现类

package com.clark.impl;

import com.clark.IHelloWorld;

public class HelloWorldImpl implements IHelloWorld {

    @Override
    public String sayHello(String name) {
        return “Hello Wolrd ,”+name;
    }

    @Override
    public int plus(int a, int b) {
        return a+b;
    }

}

3============服务端

package com.clark.service;

import javax.xml.ws.Endpoint;

import com.clark.impl.HelloWorldImpl;

public class WebServiceApp {
    public static void main(String[] args) {
        System.out.println(“web service start”);
        HelloWorldImpl implementor = new HelloWorldImpl();
        String address = “http://localhost:8080/IHelloWorld”;
        Endpoint.publish(address, implementor);
        System.out.println(“web service started”);
    }
}

4============client(以下主要是针对Java普通程序的)
package com.clark.client;

import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;

import com.clark.IHelloWorld;

public class HelloWorldClient {
    public static void main(String[] args) {
        JaxWsProxyFactoryBean svr = new JaxWsProxyFactoryBean();
        svr.setServiceClass(IHelloWorld.class);
        svr.setAddress(“http://localhost:8080/CXFWebService/service/IHelloWorld”);
        IHelloWorld hw = (IHelloWorld) svr.create();
        String name = hw.sayHello(” CXF Apache implements Web Service”);
        int result = hw.plus(2, 3);
        System.out.println(name);
        System.out.println(result);
    }
}

4==============client(针对Spring中集成Web Service的Web开发)
package com.clark.web;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.clark.IHelloWorld;

public class HelloWorldClient {
    public static void main(String[] args) {
        System.out.println(“Web Service start……….”);
        ApplicationContext context = new ClassPathXmlApplicationContext(“applicationContext.xml”);
        
        IHelloWorld helloWorld = (IHelloWorld)context.getBean(“client”);
        
        String name = helloWorld.sayHello(“1111111111”);
        int result = helloWorld.plus(3, 4);
        System.out.println(name+”  “+result);
        
        System.out.println(“Web Service end……….”);
    }
}

5============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”
                 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:endpoint
                              id=”helloWorld”
                              implementor=”com.clark.impl.HelloWorldImpl”
                              address=”/IHelloWorld” />
   
                <bean id=”client” class=”com.clark.IHelloWorld”
                           factory-bean=”clientFactory” factory-method=”create”/>
    
                 <bean id=”clientFactory” class=”org.apache.cxf.jaxws.JaxWsProxyFactoryBean”>
                            <property name=”serviceClass” value=”com.clark.IHelloWorld”/>
                            <property name=”address”

                                              value=”http://localhost:8080/CXFWebService/service/IHelloWorld”/>
                  </bean>
</beans>

6=============Spring中集成Web Service服务(CXF Servlet的配置),web.xml
<?

xml version=”1.0″ encoding=”UTF-8″?>
<web-app xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns=”http://java.sun.com/xml/ns/javaee” xsi:schemaLocation=”http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd” id=”WebApp_ID” version=”2.5″>
  <display-name>CXFWebService</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
 
  <context-param>
      <param-name>contextConfigLocation</param-name>
      <!– <param-value>classpath:applicationContext.xml</param-value> –>
      <param-value>WEB-INF/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>CXFServlet</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>/service/*</url-pattern>
               </servlet-mapping>
</web-app>

7=============启动服务,地址栏输入
http://localhost:8080/CXFWebService/service/IHelloWorld?

wsdl可以看到对应的SOAP协议在规格OK

版权声明:本文博客原创文章,博客,未经同意,不得转载。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/117642.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • Pytest(1)安装与入门[通俗易懂]

    Pytest(1)安装与入门[通俗易懂]pytest介绍pytest是python的一种单元测试框架,与python自带的unittest测试框架类似,但是比unittest框架使用起来更简洁,效率更高。根据pytest的官方网站介绍,它

    2022年7月30日
    4
  • Python之sqlite3

    描述Python的数据库模块有统一的接口标准,所以数据库操作都有统一的模式(假设数据库模块名为db):1.用db.connect创建数据库连接,假设连接对象为conn2.如果该数据库操作不需

    2021年12月18日
    39
  • 单片机sleep函数的头文件_C语言之Sleep函数

    单片机sleep函数的头文件_C语言之Sleep函数Sleep 函数 功能 执行挂起一段时间用法 unsignedslee unsignedseco 注意 在 VC 中使用带上头文件 include 在 Linux 下 gcc 编译器中 使用的头文件因 gcc 版本的不同而不同 include 在 VC 中 Sleep 中的第一个英文字符为大写的 S 在 linux 下不要大写 在标准 C 中是 sleep 不要大写 简单的说 VC 用 Sleep 别的

    2025年10月27日
    4
  • 神经网络的若干关键基础理论研究_DLA深度神经网络

    神经网络的若干关键基础理论研究_DLA深度神经网络这是一篇关于神经网络算法设计的几个基本问题的理论分析的专题文章,涉及到比较多的原理推导。文章的主体来自IanGoodfellow的《DeepLearning》;AndrewNg在Coursera的《MachineLearning》课程;周志华老师的《机器学习》MichaelNielson的线上书籍:曹振华老师的《随机数学基础》。本文涉及到的概念和理论,尽可能参考自维基百科,保证所有观点的严密和权威。

    2022年8月11日
    10
  • Arduino教程 RFID-RC522读IC卡门禁原理及破解防御[通俗易懂]

    【文章特色:1、提出IC卡破解原理和简单有效的防御方法2、网上其他文章对于硬件如何接线说得模糊不清】1、序言2、加载RC522库文件3、模块引脚接线4、程序代码5、运行结果先说下简单门禁系统的原理:(1)IC卡激活:门禁卡管理员将卡片放到读卡器、这时软件读取到IC卡的UID序列号信息(相当于身份证号码),将这个UID录入数据库激活IC卡。(2)刷卡

    2022年4月17日
    288
  • Android SwipeRefreshLayout 官方下拉刷新控件介绍

    Android SwipeRefreshLayout 官方下拉刷新控件介绍下面App基本都有下拉刷新的功能,以前基本do

    2022年6月25日
    28

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号