文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Sping学习笔记(2)----实例化Bean的三种方式

Sping学习笔记(2)----实例化Bean的三种方式

时间:2010-06-02  来源:mcuflower

 

Spring的实例化Bean有三种方式:

 使用类构造器直接实例化

 使用静态工厂的方法实例化

 使用实例工厂方法实例化

 

三种方式对应的配置如下

Xml代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.         xmlns:context="http://www.springframework.org/schema/context"  
  5.         xmlns:tx="http://www.springframework.org/schema/tx"  
  6.         xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd   
  7.                 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd   
  8.                 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">  
  9.         <!-- 使用类构造器直接实例化 -->     
  10.         <bean id="userBean1" class="com.szy.spring.implbean.UserBean" />  
  11.         <!-- 使用静态工厂的方法实例化 -->  
  12.         <bean id="userBean2" class="com.szy.spring.factory.BeanFactory" factory-method="UserBeanService" />  
  13.         <!-- 使用实例工厂方法实例化 -->  
  14.         <bean id="factory" class="com.szy.spring.factory.BeanFactory" />  
  15.         <bean id="userBean3" factory-bean="factory" factory-method="getUserBeanService" />  
  16. </beans>  

 

其中BeanFactory类的代码如下

Java代码
  1. package com.szy.spring.factory;   
  2.   
  3. import com.szy.spring.implbean.UserBean;   
  4. import com.szy.spring.interfacebean.PersonBean;   
  5.   
  6. public class BeanFactory   
  7. {   
  8.     //使用静态工厂的方法实例化使用   
  9.     public static PersonBean UserBeanService()   
  10.     {   
  11.         return new UserBean();   
  12.     }   
  13.        
  14.     public PersonBean getUserBeanService()   
  15.     {   
  16.         return new UserBean();   
  17.     }   
  18. }  
     

在这三种方式中我们最常用的还是第一种。

  • spring.rar (2.6 MB)
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载