目录
- 构建项目
- 服务端实现
- 客户端测试
- 嵌入式HTTP服务发布服务
[一]、构建项目
创建项目 xfire-jsr181-demo:
mvn archetype:create -DgroupId=com.micmiu.xfire.demo -DartifactId=xfire-jsr181-demo -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false
转为Eclipse项目并导入到Eclipse 中:
mvn eclipse:eclipse
配置项目的源目录和编译目录,.classpath 文件内容如下:
<?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" output="target/classes" path="src/main/java"/> <classpathentry kind="src" output="target/classes" path="src/main/resources"/> <classpathentry kind="src" output="target/test-classes" path="src/test"/> <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/> <classpathentry kind="output" path="target/classes"/> </classpath>
添加相关的依赖,修改POM.xml 添加如下内容:
<dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.3</version> <type>jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.codehaus.xfire</groupId> <artifactId>xfire-all</artifactId> <version>1.2.6</version> <type>jar</type> <scope>compile</scope> </dependency>
[二]、服务端的实现
创建基础的package:com.micmiu.xfire.demo.jsr181
1.服务端接口:HelloJSR181Service.java
package com.micmiu.xfire.demo.jsr181; import javax.jws.WebMethod; import javax.jws.WebParam; import javax.jws.WebService; /** * * @blog http://www.micmiu.com * @author Michael */ @WebService public interface HelloJSR181Service { /** * return welcome * * @param username * @return */ @WebMethod String sayHello(@WebParam(name = "username") String username); }
2.服务端接口的实现:HelloJSR181ServiceImpl.java
package com.micmiu.xfire.demo.jsr181; import javax.jws.WebService; /** * @blog http://www.micmiu.com * @author Michael */ @WebService(endpointInterface = "com.micmiu.xfire.demo.jsr181.HelloJSR181Service") public class HelloJSR181ServiceImpl implements HelloJSR181Service { public String sayHello(String username) { return "Hi," + username + " welcome to my blog http://www.micmiu.com"; } }
3.XFire相关配置
在源目录 src/main/java 下创建两级目录:META-INF/xfire ,然后在该目录下创建文件:services.xml ,具体内容如下:
<!-- START SNIPPET: services --> <beans xmlns="http://xfire.codehaus.org/config/1.0"> <service> <name>HelloJSR181Service</name> <serviceClass>com.micmiu.xfire.demo.jsr181.HelloJSR181Service</serviceClass> <implementationClass>com.micmiu.xfire.demo.jsr181.HelloJSR181ServiceImpl</implementationClass> <serviceFactory>#jsr181ServiceFactory</serviceFactory> </service> <bean id="config" class="org.codehaus.xfire.aegis.type.Configuration"> <property name="defaultExtensibleElements" value="false" /> <property name="defaultExtensibleAttributes" value="false" /> <property name="defaultNillable" value="false" /> <property name="defaultMinOccurs" value="1" /> </bean> <bean name="jsr181ServiceFactory" class="org.codehaus.xfire.annotations.AnnotationServiceFactory"> <constructor-arg ref="xfire.transportManager" index="0" /> <constructor-arg ref="config" index="1" type="org.codehaus.xfire.aegis.type.Configuration" /> </bean> </beans> <!-- END SNIPPET: services -->
修改文件: src\main\webapp\WEB-INF\web.xml ,内容如下:
<web-app> <display-name>Michael's demo www.micmiu.com</display-name> <servlet> <servlet-name>XFireServlet</servlet-name> <display-name>XFire Servlet</display-name> <servlet-class> org.codehaus.xfire.transport.http.XFireConfigurableServlet </servlet-class> </servlet> <servlet-mapping> <servlet-name>XFireServlet</servlet-name> <url-pattern>/servlet/XFireServlet/*</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>XFireServlet</servlet-name> <url-pattern>/services/*</url-pattern> </servlet-mapping> </web-app>
4.发布webservice
方法一:运用eclipse 中Jetty插件,直接运行该项目,日志如下:
Running Jetty 6.1.26 2012-07-31 21:41:33.415:INFO::Logging to STDERR via org.mortbay.log.StdErrLog ParentLoaderPriority enabled Context path:/xfire-jsr181-demo ProjectClassLoader: entry=... ...... ProjectClassLoader: entry=... Excluded entry=D:\workspace_dev\xfire-examples\xfire-base-demo\target\test-classes 2012-07-27 14:33:49.112:INFO::jetty-6.1.26 2012-07-27 14:33:49.666:INFO::Started SelectChannelConnector@0.0.0.0:8080
方法二:如果没有安装jetty插件,在POM.xml 文件的节点<build><plugins>…</plugins></build>中增加:
<plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>maven-jetty-plugin</artifactId> <version>6.1.26</version> <configuration> <webAppSourceDirectory>${basedir}/src/main/webapp</webAppSourceDirectory> </configuration> </plugin>
再配置goals 想关参数:jetty:run 运行:
不管用哪种方法运行后,在浏览器中输入:http://localhost:8080/xfire-jsr181-demo/services 或 http://localhost:8080/xfire-jsr181-demo/servlet/XFireServlet/ 回车:
看到上述截图信息表示webservice基本已经发布成功。
[三]、客户端测试
编码:HelloJSR181Client.java
package com.micmiu.xfire.demo.jsr181; import org.codehaus.xfire.client.XFireProxyFactory; import org.codehaus.xfire.service.Service; import org.codehaus.xfire.service.binding.ObjectServiceFactory; /** * * @blog http://www.micmiu.com * @author Michael */ public class HelloJSR181Client { /** * @param args */ public static void main(String[] args) { String url = "http://localhost:8080/xfire-jsr181-demo/services/HelloJSR181Service"; try { Service serviceModel = new ObjectServiceFactory() .create(HelloJSR181Service.class); System.out.println(" ----> 初始客户端 <---- "); HelloJSR181Service client = (HelloJSR181Service) new XFireProxyFactory() .create(serviceModel, url); System.out.println(client.sayHello("Michael")); System.out.println(" ----> 客户端调用结束 <---- "); } catch (Exception e) { e.printStackTrace(); } } }
运行结果:
----> 初始客户端 <---- Hi,Michael welcome to my blog http://www.micmiu.com ----> 客户端调用结束 <----
从上面的运行日志可以看出客户端已经调用成功。
[四]、嵌入式HTTP服务发布服务
POM.xml 中增加jetty的依赖:
<dependency> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty</artifactId> <version>6.1.26</version> <type>jar</type> <scope>compile</scope> </dependency>
编写服务发布代码:HelloJSR181ServerStarter.java
package com.micmiu.xfire.demo.jsr181; import org.codehaus.xfire.XFire; import org.codehaus.xfire.XFireFactory; import org.codehaus.xfire.annotations.AnnotationServiceFactory; import org.codehaus.xfire.server.http.XFireHttpServer; import org.codehaus.xfire.service.Service; import org.codehaus.xfire.service.invoker.BeanInvoker; /** * * @blog http://www.micmiu.com * @author Michael */ public class HelloJSR181ServerStarter { XFireHttpServer server; public void start() throws Exception { // TypeMappingRegistry registry = new DefaultTypeMappingRegistry(); AnnotationServiceFactory factory = new AnnotationServiceFactory(); // 方法一:直接接口创建 Service service = factory.create(HelloJSR181Service.class); service.setInvoker(new BeanInvoker(new HelloJSR181ServiceImpl())); // 方法二:service接口的实现类 // Service service = factory.create(HelloJSR181ServiceImpl.class); XFire xfire = XFireFactory.newInstance().getXFire(); xfire.getServiceRegistry().register(service); // Start the HTTP server System.out .println(" ----> XFire JSR181 publish by embedded HTTP Server <---- "); server = new XFireHttpServer(); server.setPort(8090); server.start(); } /** * @param args */ public static void main(String[] args) { try { System.out.println(" ----> 服务发布 。。。 <---- "); HelloJSR181ServerStarter service = new HelloJSR181ServerStarter(); service.start(); } catch (Exception e) { e.printStackTrace(); } } }
运行该启动程序日志如下:
----> 服务发布 。。。 <---- ----> XFire JSR181 publish by embedded HTTP Server <---- 2012-07-31 22:04:19.804:INFO::Logging to STDERR via org.mortbay.log.StdErrLog 2012-07-31 22:04:19.845:INFO::jetty-6.1.26 2012-07-31 22:04:19.893:INFO:/:org.codehaus.xfire.transport.http.XFireServlet-20469344: init 2012-07-31 22:04:19.914:INFO::Started SocketConnector@0.0.0.0:8090
浏览器中输入:http://localhost:8090/ 或 http://localhost:8090/HelloJSR181Service?wsdl 回车:
修改客户端测试代码:HelloJSR181Client.java
package com.micmiu.xfire.demo.jsr181; import org.codehaus.xfire.annotations.AnnotationServiceFactory; import org.codehaus.xfire.client.XFireProxyFactory; import org.codehaus.xfire.service.Service; /** * * @blog http://www.micmiu.com * @author Michael */ public class HelloJSR181Client { /** * @param args */ public static void main(String[] args) { // String url = // "http://localhost:8080/xfire-jsr181-demo/services/HelloJSR181Service"; String url = "http://localhost:8090/HelloJSR181Service"; try { // AnnotationServiceFactory ObjectServiceFactory Service serviceModel = new AnnotationServiceFactory() .create(HelloJSR181Service.class); System.out.println(" ----> 初始客户端 <---- "); HelloJSR181Service client = (HelloJSR181Service) new XFireProxyFactory() .create(serviceModel, url); System.out.println(client.sayHello("Michael")); System.out.println(" ----> 客户端调用结束 <---- "); } catch (Exception e) { e.printStackTrace(); } } }
运行结果:
----> 初始客户端 <---- Hi,Michael welcome to my blog http://www.micmiu.com ----> 客户端调用结束 <----
到此已经全部演示结束。
相关推荐
基于springboot大学生就业信息管理系统源码数据库文档.zip
基于java的驾校收支管理可视化平台的开题报告
时间序列 原木 间隔5秒钟 20241120
毕业设计&课设_基于 Vue 的电影在线预订与管理系统:后台 Java(SSM)代码,为毕业设计项目.zip
基于springboot课件通中小学教学课件共享平台源码数据库文档.zip
基于java的网上购物商城的开题报告
Delphi人脸检测与识别Demo1fdef-main.zip
基于java的咖啡在线销售系统的开题报告
基于java的自助医疗服务系统的开题报告.docx
内容概要:本文档全面介绍了Visual Basic(VB)编程语言的基础知识和高级应用。首先概述了VB的基本特性和开发环境,随后详细讲述了VB的数据类型、变量、运算符、控制结构、数组、过程与函数、变量作用域等内容。接着介绍了窗体设计、控件使用、菜单与工具栏的设计,文件操作、数据库访问等关键知识点。最后讨论了VB的学习方法、发展历史及其在桌面应用、Web应用、数据库应用、游戏开发和自动化脚本编写等领域的广泛应用前景。 适合人群:初学者和中级程序员,尤其是希望快速掌握Windows桌面应用开发的人群。 使用场景及目标:①掌握VB的基础语法和开发环境;②学会使用VB创建复杂的用户界面和功能完整的应用程序;③理解数据库操作、文件管理和网络编程等高级主题。 其他说明:Visual Basic是一种简单易学且功能强大的编程语言,尤其适合用于开发Windows桌面应用。文中不仅覆盖了基础知识,还包括了大量的实用案例和技术细节,帮助读者快速提升编程技能。
基于java的疫情期间高校防控系统开题报告.docx
基于springboot+vue社区老年人帮扶系统源码数据库文档.zip
基于java的超市商品管理系统的开题报告.docx
基于SpringBoot房屋买卖平台源码数据库文档.zip
xdu限通院23微处理器系统与应用大作业(两只老虎),适应于汇编语言keil软件,
<项目介绍> - 新闻类网站系统,基于SSM(Spring、Spring MVC、MyBatis)+MySQL开发,高分成品毕业设计,附带往届论文 - 不懂运行,下载完可以私聊问,可远程教学 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 --------
基于java的学生网上请假系统的开题报告.docx
社会经济繁荣发展的今天,电子商务得到了飞速发展,网上交易越来越彰显出其独特的优越性,在人们的日常生活中,出现了各种类型的交易网站。其中一个就是车辆易主交易网站,它是一个服务于用户买卖二手车辆的交易网站,为用户提供了平等互利、方便快捷的网上交易平台,通过这一类型的网站,用户可自由出售和购买车辆。 本课题主要根据车辆本身的特性,充分发挥互联网的特点与优势,构建一个以二手车辆为商品、基于互联网平台的车辆易主业务交易管理系统,并根据车辆易主业务交易管理系统的应用需求,进行需求分析,进而对网站系统作规划设计。采用IDEA为运行平台,以SSH为框架,运用HTML语言、JSP技术、MySql数据库、JSP与后台数据库链接等关键技术建设二手车网上交易系统,构建车辆易主交易系统的会员注册与登录,网站首页展示、用户发布商品车辆,用户求购商品车辆,分页浏览、购物系统、用户后台管理、管理员用户后台管理等功能,并使这些功能得以实现并更好为用户服务。网站整体构建完成且测试成功后,用户可以进入网站进行注册、登录,登录后,用户可以在网站上发布自己的闲置车辆或者寻找想要购买的车辆,还可以收藏车辆,管理发布和收藏的车辆,
SQLite3的向量扩展库,windows dll,版本0.1.5
基于C++实现(控制台)商品库存管理系统