1 package com.jspweb.ws; 2 3 import javax.jws.WebService; 4 import javax.xml.ws.Endpoint; 5 6 / 7 * WebService服务端案例 8 * @author AlanLee 9 * @version 2017/06/02 10 * 使用@WebService注解标注实现类 11 */ 12 @WebService 13 public class Function { 14 public String transWords(String words){ 15 String res = ""; 16 for(char ch : words.toCharArray()){ 17 res += ch+","; 18 } 19 return res; 20 } 21 22 public static void main(String[] args) { 23 // 使用Endpoint(终端)类发布webservice 24 Endpoint.publish("http://localhost:8089/service/function", new Function()); 25 System.out.println("Publish Success"); 26 } 27 }
版权声明:
本文来源网络,所有图片文章版权属于原作者,如有侵权,联系删除。
本文网址:https://www.bianchenghao6.com/java-jiao-cheng/17797.html