大战熟女丰满人妻av-荡女精品导航-岛国aaaa级午夜福利片-岛国av动作片在线观看-岛国av无码免费无禁网站-岛国大片激情做爰视频

專注Java教育14年 全國咨詢/投訴熱線:400-8080-105
動力節點LOGO圖
始于2009,口口相傳的Java黃埔軍校
首頁 hot資訊 Tomcat發布Web Service

Tomcat發布Web Service

更新時間:2021-12-27 11:02:12 來源:動力節點 瀏覽878次

1.下載jax-ws依賴包

因tomcat沒有jax-ws所需的依賴環境,所以第一步先下載Jax-ws RI,即jax-ws reference implemantation, 地址:http://jax-ws.java.net。

2.安裝jax-ws RI到tomcat服務器

先下載ant與tomcat,設置環境變量ANT_HOME與CATALINA_HOME,然后在path下引入各自的bin目錄打開命令提示符,在jax-ws ri包的目錄下運行ant install。

此命令會直接把需要的包導入到${tomcat}\shared\lib目錄下,其實也就是把jaxws RI lib下的包復制到了tomcat安裝目錄下shared\lib里面。

3.設置Eclipse中的tomcat

由于eclipse是自己定義的tomcat配置文件,所以需要加些東西,把shared\lib加入進來,打開ctalina.properties文件。

打開后為(節選):

# 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.  
  
#  
# List of comma-separated packages that start with or equal this string  
# will cause a security exception to be thrown when  
# passed to checkPackageAccess unless the  
# corresponding RuntimePermission ("accessClassInPackage."+package) has  
# been granted.  
package.access=sun.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.  
#  
# List of comma-separated packages that start with or equal this string  
# will cause a security exception to be thrown when  
# passed to checkPackageDefinition unless the  
# corresponding RuntimePermission ("defineClassInPackage."+package) has  
# been granted.  
#  
# by default, no packages are restricted for definition, and none of  
# the class loaders supplied with the JDK call checkPackageDefinition.  
#  
package.definition=sun.,java.,org.apache.catalina.,org.apache.coyote.,org.apache.tomcat.,org.apache.jasper.    
#  
#  
# List of comma-separated paths defining the contents of the "common"  
# classloader. Prefixes should be used to define what is the repository type.  
# Path may be relative to the CATALINA_HOME or CATALINA_BASE path or absolute.  
# If left as blank,the JVM system loader will be used as Catalina's "common"  
# loader.  
# Examples:  
#     "foo": Add this folder as a class repository  
#     "foo/*.jar": Add all the JARs of the specified folder as class  
#                  repositories  
#     "foo/bar.jar": Add bar.jar as a class repository  
common.loader=${catalina.home}/shared/lib/*.jar,${catalina.home}/shared/lib,${catalina.base}/lib,${catalina.base}/lib/*.jar,${catalina.home}/lib,${catalina.home}/lib/*.jar  

找到common.loader配置項增加${catalina.home}/shared/lib/*.jar,${catalina.home}/shared/lib 這兩個路徑即可

4.建立項目

新建一個web項目,webservice_web

HelloService.java是提供web service的一個接口,代碼如下:

package com.zxuqian.webservice;  
import javax.jws.WebMethod;  
import javax.jws.WebService;    
@WebService  
public interface HelloService {         
      @WebMethod  
     String greetings (String name);    
}  

HelloServiceImpl.java是實現類,代碼如下:

package com.zxuqian.webservice.impl;   
import javax.jws.WebService;   
import com.zxuqian.webservice.HelloService;   
@WebService (endpointInterface = "com.zxuqian.webservice.HelloService" )  
public class HelloServiceImpl implements HelloService {    
      @Override  
      public String greetings(String name) {  
            return "Hello: " + name;  
     }    
}  

5.添加sun-jaxws.xml

sun-jaxws.xml是通過web方式發布web service應用的描述文件,內容如下:

<?xml version="1.0" encoding="UTF-8"?>  
<endpoints xmlns="http://java.sun.com/xml/ns/jax-ws/ri/runtime" version="2.0">  
    <endpoint name="HelloWorld" implementation="com.zxuqian.webservice.impl.HelloServiceImpl"   
        url-pattern="/hello" />  
</endpoints>  

各個節點的具體說明請參考下載的jaxws ri包里面的docs文檔,在這里簡單說明一下,endpoint需要指定

web service服務的接口和實現類,以及它的url相對路徑

6.配置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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" 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>webservice_web</display-name>      
  <listener>  
    <listener-class>com.sun.xml.ws.transport.http.servlet.WSServletContextListener</listener-class>  
  </listener>  
  <servlet>  
    <servlet-name>hello</servlet-name>  
    <servlet-class>com.sun.xml.ws.transport.http.servlet.WSServlet</servlet-class>  
    <load-on-startup>1</load-on-startup>  
  </servlet>      
  <servlet-mapping>  
    <servlet-name>hello</servlet-name>  
    <url-pattern>/hello</url-pattern>  
  </servlet-mapping>  
</web-app>  

7.測試

啟動tomcat,在瀏覽器中輸入web service地址 http://localhost:8088/webservice_web/hello我的tomcat的端口號是8088,大家根據自己的端口號進行相應的修改。

提交申請后,顧問老師會電話與您溝通安排學習

免費課程推薦 >>
技術文檔推薦 >>
主站蜘蛛池模板: 欧美久久久久 | 毛片在线看网站 | 亚洲成a人片77777kkk | 在线观看国产情趣免费视频 | 最近中文字幕精彩视频 | 久久riav.com| 狠狠色丁香婷婷久久综合2021 | 色婷在线 | 看片一区 | porno日本xxxx| 亚洲精品美女视频 | 伊人久久久综在合线久久在播 | 国产高清美女一级a毛片久久 | 色偷偷在线刺激免费视频 | 免费黄色小视频在线观看 | 我想看一级黄色毛片 | 国产亚洲精品一区二区三区 | 国产精品成aⅴ人片在线观看 | 九九热免费视频 | 美女被爆羞羞视频网站视频 | 手机看片日韩日韩韩 | 亚洲欧美中日韩 | 国产亚洲精品国产福利在线观看 | 久草免费在线视频观看 | 久草国产在线 | 欧美成人高清免费大片观看 | 成人中文字幕一区二区三区 | 99国产精品久久久久久久日本 | 四虎音影| 国产真实偷乱视频在线观看 | 欧美ⅹxxxx视频| 元龙第三季动漫在线观看免费版 | 精品亚洲大全 | 最猛黑人xxxⅹ黑人猛交 | 国产成人午夜片在线观看 | 神马啪啪| 国产精品欧美在线观看 | 天天草夜夜操 | 日韩一级黄色录像 | 在线中文字幕一区 | 另类久久|