快速业务通道

Spring受管Bean的与处理和后处理 三 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-14

Spring受管Bean的与处理和后处理 三

时间:2011-10-02 残梦追月

使用标签的init-method和destroy-method属性

在<bean> 标签中,有init-method和destroy-method属性,通过设置这两个属性的值,可以很 方便的指定该受管Bean的缺省的初始化方法和析构方法。

要给应用中每个Bean都指定init-method和destroy-method属性,那将是一个麻烦的工作,要简化配置 ,可以通过<beans>标签的default-init-method和default-destroy-method属性来为其范围内的所 有受管Bean制定相同的初始化方法和析构方法。

下面的范例展示如何使用<bean>标签的init-method和destroy-method属性。

创建java工程,添加Spring开发能力,创建ioc.test包。创建Animal类,为其添加name、age成员、 Geter和Seter方法、speak方法后,再添加一个初始化方法和一个析构方法,名字可以任意,这里为Start 和end。代码如下:

代码

/** * */ package ioc.test; /** * @author zhangyong * */ public class Animal{    private String name;    private int age;      public String speak(){      return "我的名字:"+this.name+",我 的年龄:"+this.age;    }     public void start() throws Exception {       System.out.println("初始化方法start()正在运行!");    }     public void end() throws Exception {      System.out.println("析构方法end()正在运行!");    }  //Geter和Seter省略  }  /** * */ package ioc.test; /** * @author zhangyong * */ public class Animal{    private String name;    private int age;      public String speak(){      return "我的名字:"+this.name+",我的年龄:"+this.age;    }    public void start() throws Exception {      System.out.println("初始化方法start()正在运行!");    }    public void end() throws Exception {      System.out.println("析构方法end()正在运行! ");    } //Geter和Seter省略 }

Spring受管Bean的与处理和后处理 三(2)

时间:2011-10-02 残梦追月

配置文件中配置好bean,并为其指定响应的预处理方法和析构方法:

代码

<?xml version="1.0" encoding="UTF-8"?> <beans    xmlns="http://www.springframework.org/schema/beans"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://www.springframework.org/schema/beans            http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">   <bean id="animal" class="ioc.test.Animal" init-method="start" destroy-method="end">     <property name="age" value="5"></property>     <property name="name" value="猪"></property>   </bean> </beans> <?xml version="1.0" encoding="UTF-8"?> <beans    xmlns="http://www.springframework.org/schema/beans"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:schemaLocation="http://www.springframework.org/schema/beans            http://www.springframework.org/schema/beans/sprin

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号