學習隨筆-Java WebService

webService 能夠將應用程序轉換成網絡應用程序。是簡單的可共同操做的消息收發框架。java

基本的webService平臺是 XML 和 HTTP。web

      HTTP 是最經常使用的互聯網協議;spring

      XML 是 webService 的基礎,由於能夠用於不一樣平臺和編程語言之間。編程

webService平臺的元素:spring-mvc

       SOAP(簡易對象訪問協議);網絡

       UDDI(通用描述、發現、整合);mvc

       WSDL(web service 描述語言);框架

webService 有兩種類型的應用maven

      1)可重複使用的應用程序組件:有些功能是不一樣應用程序經常用到的,好比:天氣預報。webService能夠把應用程序組件當作服務來提供;編程語言

      2)鏈接現有軟件:經過爲不一樣程序提供一種連接其數據的途徑,解決協同辦公的問題。

簡單程序:

建立一個service 的 web service project工程 :

package com.service;

import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.xml.ws.Endpoint;

@WebService   //將類標註爲webService
public class Test {
    
    @WebMethod  //標註客戶端調用的方法
    public String getString (String name){
        return name.toUpperCase();
    }
    public static void main(String[] args) {

   //發佈到服務端 參數1:網絡協議+ip+端口號(不能被佔用)+上下文根+調用方法  參數2:new一個本類的實例
        Endpoint.publish("http://localhost:8085/Test", new Test());

   //標誌着編譯成功結束 可不寫
        System.out.println("OK");
    }
}

//配置文件我如今尚未搞明白  若是不配配置測試地址就無響應

配置一個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:context="http://www.springframework.org/schema/context"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!-- 註冊組件掃描器 -->
    <context:component-scan base-package="com.service" />
</beans>

測試地址:http://localhost:8085/Test?wsdl

利用 webService soapUI 4.5.2軟件 連接http://localhost:8085/service/Test 自動生成應用服務

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.com/">
   <soapenv:Header/>
   <soapenv:Body>
      <ser:getString>
         <!--Optional:-->
         <arg0>yyyy</arg0>  //<arg0>?</arg0> 原始顯示是? 爲需求參數
      </ser:getString>
   </soapenv:Body>
</soapenv:Envelope>

 

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
   <S:Body>
      <ns2:getStringResponse xmlns:ns2="http://service.com/">
         <return>YYYY</return>  //<return>?</return> 原始顯示是? 爲處理結果
      </ns2:getStringResponse>
   </S:Body>
</S:Envelope>


 

二、命令提示窗口執行生成命令。

先建立一個client 的web service project 工程

打開 命令窗口 輸入

格式:wsimport -s "src目錄" -p 「生成類所在包名」 -keep 「wsdl發佈地址」

    1)"src目錄"地址不可含空格

    2)「wsdl發佈地址」不要漏了「?wsdl」

效果:

  wsimport -s E:\WorkSpace\maven\client\src  -p com.client -keep http://localhost:8085/Test?wsdl
  正在解析 WSDL...
  正在生成代碼...
  正在編譯代碼...

刷新項目就能夠看到生成的client代碼

可是client 客戶端代碼會有亂碼問題目前尚未解決

相關文章
相關標籤/搜索