60 seconds to Spring (2)

60 sec to Spring [TOC]

Bean Tutorial 2 - To Singleton or Not To Singleton

Beans are defined to be deployed in one of the two modes: Singleton and Non-Singleton (Prototype). When a bean is a singleton, only one shared instance of the bean will be managed. The prototype mode of a bean deployment results in the creation of a new bean instance every time a request for that specific bean is done. Tutorial 2 will demostrate the difference behaviour when defining a bean as Singleton and Prototype.

Note: By default all beans are deployed in singleton mode, unless you specify otherwise.

Step 1: Create a CounterBean.java in src

org/jarchitect/spring/tutorial2/CounterBean.java

package org.jarchitect.spring.tutorial2; public class CounterBean { private int counter; public CounterBean() { System.out.println("Construct CounterBean......"); } public int getCount() { return counter++; } } 

Step 2: Specify the CounterBean class in the bean.xml

Do notice that I have defined one CounterBean as singleton bean and the other as prototype bean.

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"  "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> <description>jarchitect Spring Tutorial 2</description> <bean id="singletonBean" class="org.jarchitect.spring.tutorial2.CounterBean" singleton="true"/> <bean id="prototypeBean" class="org.jarchitect.spring.tutorial2.CounterBean" singleton="false"/> </beans>

Step 3: Create a Main.java in src

org/jarchitect/spring/tutorial2/Main.java

package org.jarchitect.spring.tutorial2; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.InputStream; import org.springframework.beans.factory.xml.XmlBeanFactory; public class Main { public static void main(String[] args) { try { //Read the configuration file InputStream is = new FileInputStream("bean.xml"); XmlBeanFactory factory = new XmlBeanFactory(is); //Instantiate an singleton object System.out.println("---- Singleton Bean ----"); CounterBean singletonBean = (CounterBean) factory.getBean("singletonBean"); System.out.println("First Call :- " + singletonBean.getCount()); singletonBean = (CounterBean) factory.getBean("singletonBean"); System.out.println("Second Call :- " + singletonBean.getCount()); System.out.println(""); //Instantiate an object System.out.println("---- Prototype Bean ----"); CounterBean prototypeBean = (CounterBean) factory.getBean("prototypeBean"); System.out.println("First Call :- " + prototypeBean.getCount()); prototypeBean = (CounterBean) factory.getBean("prototypeBean"); System.out.println("Second Call :- " + prototypeBean.getCount()); } catch (FileNotFoundException e) { e.printStackTrace(); } } }

Step 4: Use an ANT script to build and execute the Main class. Just run ant from the command prompt will do the trick.

Below are the output from ANT.

C:/60sec2Spring/SpringTutorial2>ant Buildfile: build.xml build: [javac] Compiling 2 source files to C:/60sec2Spring/SpringTutorial2/bin run: [java] Jun 1, 2004 12:16:42 PM org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions [java] INFO: Loading XML bean definitions from (no description) [java] Jun 1, 2004 12:16:42 PM org.springframework.beans.factory.support.AbstractBeanFactory getBean [java] INFO: Creating shared instance of singleton bean 'singletonBean' [java] ---- Singleton Bean ---- [java] Construct CounterBean...... [java] First Call :- 0 [java] Second Call :- 1 [java] ---- Prototype Bean ---- [java] Construct CounterBean...... [java] First Call :- 0 [java] Construct CounterBean...... [java] Second Call :- 0 BUILD SUCCESSFUL Total time: 2 seconds

Done.

[TOC]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值