加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

WebService大讲堂之Axis2(7):将Spring的装配JavaBean发布成WebS

发布时间:2020-12-17 02:34:20 所属栏目:安全 来源:网络整理
导读:在现今的 Web 应用中经常使用 Spring 框架来装载 JavaBean 。如果要想将某些在 Spring 中装配的 JavaBean 发布成 WebService ,使用 Axis2 的 Spring 感知功能是非常容易做到的。 ??? 在本文的例子中,除了 Tomcat 安装目录 webappsaxis2 目录及该目录中的
在现今的Web 应用中经常使用Spring 框架来装载JavaBean 。如果要想将某些在Spring 中装配的JavaBean 发布成WebService ,使用Axis2 Spring 感知功能是非常容易做到的。
??? 在本文的例子中,除了<Tomcat 安装目录>webappsaxis2 目录及该目录中的相关库外,还需要Spring 框架中的spring.jar 文件,将该文件复制到<Tomcat 安装目录>webappsaxis2WEB-INFlib 目录中。
??? 下面先建立一个JavaBean (该JavaBean 最终要被发布成WebService ),代码如下:
package ?service;
import ?entity.Person;
public ? class ?SpringService
{
????
private ?String?name;
????
private ?String?job;
????
public ? void ?setName(String?name)
????{
????????
this .name? = ?name;
????}
????
public ? void ?setJob(String?job)
????{
????????
this .job? = ?job;
????}
????
public ?Person?getPerson()
????{
????????Person?person?
= ? new ?Person();
????????person.setName(name);
????????person.setJob(job);
????????
return ?person;
????}
????
public ?String?getGreeting(String?name)
????{
????????
return ? " hello? " ? + ?name;
????}
}
??? 其中Person 也是一个JavaBean ,代码如下:
package ?entity;
public ? class ?Person
{
????
private ?String?name;
????
private ?String?job;
????
public ?String?getName()
????{
????????
return ?name;
????}
????
public ? void ?setName(String?name)
????{
????????
this .name? = ?name;
????}
????
public ?String?getJob()
????{
????????
return ?job;
????}
????
public ? void ?setJob(String?job)
????{
????????
this .job? = ?job;
????}
}
??? 将上面两个Java 源文件编译后,放到<Tomcat 安装目录>webappsaxis2WEB-INFclasses 目录中。
??? 在<Tomcat 安装目录>webappsaxis2WEB-INFweb.xml文件中加入下面的内容:
< listener >
????????
< listener-class > org.springframework.web.context.ContextLoaderListener </ listener-class >
</ listener >
< context-param >
??????
< param-name > contextConfigLocation </ param-name >
??????
< param-value > /WEB-INF/applicationContext.xml </ param-value >
</ context-param >
??? <Tomcat 安装目录>webappsaxis2WEB-INF 目录中建立一个applicationContext.xml 文件,该文件是Spring 框架用于装配JavaBean 的配置文件,内容如下:
<? 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:aop
="http://www.springframework.org/schema/aop"
????????xmlns:tx
="http://www.springframework.org/schema/tx"
????????xsi:schemaLocation
="
????????????http://www.springframework.org/schema/beans?http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
????????????http://www.springframework.org/schema/aop?http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
????????????http://www.springframework.org/schema/tx?http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"
>
??
< bean? id ="springService" ?class ="service.SpringService" >
?????
< property? name ="name" ?value ="姚明" ? />
?????
< property? name ="job" ?value ="职业男篮" ? /> ?
??
</ bean > ???
</ beans >
??? applicationContext.xml 文件中装配了service.SpringService 类,并被始化了name job 属性。在配置完SpringService 类后,就可以直接在程序中FileSystemXmlApplicationContext 类或其他类似功能的类读取applicationContext.xml 文件中的内容,并获得SpringService 类的对象实例。但现在我们并不这样做,而是将SpringService 类发布成WebService
??? <Tomcat 安装目录>webappsaxis2WEB-INFlib 目录中有一个axis2-spring-1.4.1.jar 文件,该文件用于将被装配JavaBean 的发布成WebService 。在D 盘建立一个axi2-spring-ws 目录,并在该目录中建立一个META-INF 子目录。在META-INF 目录中建立一个services.xml 文件,内容如下:
< service? name ="springService" >
????
< description >
????????Spring?aware
????
</ description >
????
< parameter? name ="ServiceObjectSupplier" >
????????org.apache.axis2.extensions.spring.receivers.SpringServletContextObjectSupplier
????
</ parameter >
????
< parameter? name ="SpringBeanName" >
????????springService
????
</ parameter >
????
< messageReceivers >
????????
< messageReceiver? mep ="http://www.w3.org/2004/08/wsdl/in-out"
????????????class
="org.apache.axis2.rpc.receivers.RPCMessageReceiver" ? />
????
</ messageReceivers >
</ service > ????
??? Windows 控制台进入axi2-spring-ws 目录,并使用jar 命令将axi2-spring-ws 目录中的内容打包成axi2-spring-ws.aar ,然后将该文件复制到<Tomcat 安装目录>webappsaxis2WEB-INFservices 目录中,启动Tomcat 后,就可以访问该WebService 了,访问方式与前面几篇文章的访问方式相同。获得wsdl 内容的URL 如下:

http://localhost:8080/axis2/services/springService?wsdl

??? 在将Spring 中的装配JavaBean 发布成WebService 需要注意以下几点:
??? 1.? JavaBean 编译生成的.class 文件需要放在WEB-INFclasses 目录中,或打成.jar 包后放在WEB-INFlib 目录中,而WEB-INFservices 目录中的.aar 包中不需要包含.class 文件,而只需要包含一个META-INF 目录,并在该目录中包含一个services.xml 文件即可。
??? 2.?services.xml 的配置方法与前几篇文章的配置方法类似,只是并不需要使用ServiceClass 参数指定要发布成WebService Java 类,而是要指定在applicationContext.xml 文件中的装配JavaBean 的名称(SpringBeanName 参数)。
??? 3.? services.xml 文件中需要通过ServiceObjectSupplier 参数指定SpringServletContextObjectSupplier 类来获得Spring ApplicationContext 对象。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读