首页 > 代码库 > 简单实现
简单实现
1.创建接口和实现类 (模拟实现查询天气)
接口:
package com.learning.weather; /** * * weather 接口 :实现模拟wsdl */ public interface WeatherInterface { /** * 查询天气 * @param name * @return */ public String queryWeather(String name); }
实现类:
package com.learning.weather; import javax.jws.WebService; @WebService public class WeatherInterfaceImpl implements WeatherInterface { @Override public String queryWeather(String name) { System.out.println("查询天气"+ name); return "nihao "; } }
main方法测试,开启服务:
package com.learning.weather; import javax.xml.ws.Endpoint; public class TestMain { public static void main(String[] args) { String address="Http://127.0.0.1:1234/weather"; Object implementor=new WeatherInterfaceImpl(); Endpoint.publish(address, implementor); } }
访问 Http://127.0.0.1:1234/weather,点击wsdl
出现以下页面
在src目录下 执行wsimport命令 : wsimport -p com.learning.client -s . http://127.0.0.1:1234/weather?wsdl
src下刷新出现新的包com.learning.client
写客户端程序
package com.learning.client; public class TestMain { public static void main(String[] args) { //1.创建服务视图 WeatherInterfaceImplService weatherInterfaceImplService =new WeatherInterfaceImplService(); //2.得到实现类 WeatherInterfaceImpl weatherInterfaceImpl = weatherInterfaceImplService.getPort(WeatherInterfaceImpl.class); //发送数据 String weather = weatherInterfaceImpl.queryWeather("湖北"); System.out.println(weather); } }
运行测试即可
简单实现
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。