Spring4-作用域singleton和prototype

1.创建Maven项目,项目名称springdemo26,如图所示

2.配置Maven,修改项目中的pom.xml文件,修改内容如下

<project xmlns="http://maven.apache.org/POM/4.0.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>1.0.0</modelVersion>
  <groupId>shequ</groupId>
  <artifactId>springdemo13</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  
  <properties>
  	<java.version>1.7</java.version>
  	<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  	<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  </properties>
  
  <repositories>
  	<repository>
  		<id>codelds</id>
  		<url>https://code.lds.org/nexus/content/groups/main-repo</url>
  	</repository>
  </repositories>
  
  <dependencies>
  	<dependency>
  		<groupId>junit</groupId>
  		<artifactId>junit</artifactId>
  		<version>4.10</version>
  	</dependency>
  
  	<dependency>
  		<groupId>org.springframework</groupId>
  		<artifactId>spring-core</artifactId>
  		<version>4.1.4.RELEASE</version>
  	</dependency>
  
  	<dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>4.1.4.RELEASE</version>
    </dependency>
    
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>4.1.4.RELEASE</version>
    </dependency>
    
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>5.1.34</version>
    </dependency>
       
  </dependencies>
  <build/>
</project>

3.在src/main/java下创建实体Bean Forum,包名(com.mycompany.shequ.bean)如图所示

4.实体Bean Forum的内容如下

package com.mycompany.shequ.bean;

public class Forum {
	private int fid;
	private String name;
	public int getFid() {
		return fid;
	}
	public void setFid(int fid) {
		this.fid = fid;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	@Override
	public String toString() {
		return "{fid=>"+this.fid+",name=>"+this.name+"}";
	}
}

5.在src/main/java下创建实体Bean ForumPost,包名(com.mycompany.shequ.bean)如图所示

6.实体Bean ForumPost的内容如下

package com.mycompany.shequ.bean;

public class ForumPost {
	private int pid;
	private String name;
	private Forum forum;
	public int getPid() {
		return pid;
	}
	public void setPid(int pid) {
		this.pid = pid;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public Forum getForum() {
		return forum;
	}
	public void setForum(Forum forum) {
		this.forum = forum;
	}
	@Override
	public String toString() {
		return "{pid=>"+this.pid+",name=>"+this.name+",["+this.forum+"]}";
	}
}

7.在src/main/resources下创建spring-bean.xml配置文件,如图所示

8.spring-bean.xml配置文件的内容如下

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">

	<!-- 1.scope="singleton"表示单例,如果不写scope,默认为单例 -->
	<bean id="forumpost1" class="com.mycompany.shequ.bean.ForumPost" scope="singleton">
		<property name="pid" value="1"></property>
		<property name="name" value="singleton"></property>
		<property name="forum" ref="forum1"></property>
	</bean>

	<bean id="forum1" class="com.mycompany.shequ.bean.Forum">
		<property name="fid" value="1"></property>
		<property name="name" value="singleton"></property>
	</bean>

	<!-- ******************************分开比较好************************************ -->

	<!-- 2.scope="prototype"表示原型,如果不写scope,默认为单例 -->
	<bean id="forumpost2" class="com.mycompany.shequ.bean.ForumPost" scope="prototype">
		<property name="pid" value="2"></property>
		<property name="name" value="prototype"></property>
		<property name="forum" ref="forum2"></property>
	</bean>

	<bean id="forum2" class="com.mycompany.shequ.bean.Forum">
		<property name="fid" value="2"></property>
		<property name="name" value="prototype"></property>
	</bean>

</beans>

9.在src/main/resources下创建核心配置文件applicationContext.xml,如图所示

10.核心配置文件applicationContext.xml的内容如下

<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-4.0.xsd">

	<import resource="bean/spring-bean.xml"/>

</beans>

11.在src/test/java下创建测试文件AppTest,包名(com.mycompany.shequ.test)如图所示

12.测试文件AppTest的内容如下

package com.mycompany.shequ.test;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.mycompany.shequ.bean.ForumPost;

public class AppTest {

	@Test
	public void beanTest(){
	    ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
	    ForumPost forumPost1 = (ForumPost) context.getBean("forumpost1");
	    System.out.println(forumPost1.hashCode());

	    ForumPost forumPost2 = (ForumPost) context.getBean("forumpost1");
	    System.out.println(forumPost2.hashCode());

	    System.out.println("-------------------------分开比较好------------------------");

	    ForumPost forumPostA = (ForumPost) context.getBean("forumpost2");
	    System.out.println(forumPostA.hashCode());

	    ForumPost forumPostB = (ForumPost) context.getBean("forumpost2");
	    System.out.println(forumPostB.hashCode());
	}
}

13.在测试类AppTest的beanTest方法上右键运行,输出结果如图所示

时间: 2024-10-22 19:46:29

Spring4-作用域singleton和prototype的相关文章

singleton和prototype的区别

singleton作用域:当把一个Bean定义设置为singleton作用域是,Spring IoC容器中只会存在一个共享的Bean实例,并且所有对Bean的 请求,只要id与该Bean定义相匹配,则只会返回该Bean的同一实例.值得强调的是singleton作用域是Spring中的缺省作用域.prototype作用域:prototype作用域的Bean会导致在每次对该Bean请求(将其注入到另一个Bean中,或者以程序的方式调用容器的getBean ()方法)时都会创建一个新的Bean实例.根

Spring 循环引用 ——理解singleton与prototype初始化的区别

所谓的循环引用,就是A依赖B,B又依赖A,A与B两个对象相互持有.像下面这种情况: class A { B b; public A(B b) { this.b=b; } } class B { A a; public B(A a ) { this.a=a; } } 我们知道spring在获取对象或者在加载的时候,触发依赖注入.例如触发A对象的依赖注入,发现需要B对象,而此时B还没有初始化,就去实例化B对象,而又需要A对象,这样就进入了一种死循环状态,有点像操作系统里面的死锁.似乎这种情况发生了,

辨析 singleton 和 prototype

<bean id="person1" class="com.bean.life.Person"> <property name="name"> <value>小明</value> </property> </bean> <bean id="person2" class="com.bean.life.Person"> <

[Sprint] Bean Scope Singleton cs Prototype

We can define a class to be Singleton or Prototype. If the class was defined as Prototype, then everytime when we use new keyword, it will create a new instance. // Singleton @Service("customerService") @Scope(ConfigurableBeanFactory.SCOPE_SINGL

spring中bean的作用域属性singleton与prototype的区别

1.singleton 当一个bean的作用域设置为singleton, 那么Spring IOC容器中只会存在一个共享的bean实例,并且所有对bean的请求,只要id与该bean定义相匹配,则只会返回bean的同一实例.换言之,当把一个bean定义设置为singleton作用域时,Spring IOC容器只会创建该bean定义的唯一实例.这个单一实例会被存储到单例缓存(singleton cache)中,并且所有针对该bean的后续请求和引用都将返回被缓存的对象实例,这里要注意的是singl

[Spring Boot] Singleton and Prototype

When we use Bean to do autowired, it actually use singleton, so even we create multi instanses, they are the same: @SpringBootApplication public class In28minutesApplication { public static void main(String[] args) { // Application Context Applicatio

20191225 Spring官方文档(Core 1.5)

1.5.Bean Scopes 创建bean定义时,将创建一个配方,用于创建该bean定义所定义的类的实际实例.Bean定义是配方的想法很重要,因为它意味着与类一样,您可以从一个配方中创建许多对象实例. Spring Framework支持六个作用域,四个仅在Web环境的Spring ApplicationContext中可用.您还可以创建自定义作用域. 范围 描述 singleton (默认)将每个Spring IoC容器的单个bean定义范围限定为单个对象实例. prototype 将单个b

spring4学习:bean的作用域

spring bean 的作用域有四种:singleton.prototype.session和request. 常用的有singleton和prototype两种.其他两种比较少用 使用bean的scope属性来配置bean的作用域        singleton:默认值.容器初始化时创建bean实例,在整个容器的生命周期内只创建这一个bean,单例的.        prototype:原型的,容器初始化时不创建bean实例,而在每次请求时都创建一个新的bean实例,并返回. 例如: Ca

2 Spring4 之Bean的配置

Spring4 之Bean的配置 1 IOC & DI 概述 IOC(Inversion of Control):其思想是反转资源获取的方向. 传统的资源查找方式要求组件向容器发起请求查找资源. 作为回应, 容器适时的返回资源. 而应用了 IOC 之后, 则是容器主动地将资源推送给它所管理的组件, 组件所要做的仅是选择一种合适的方式来接受资源. 这种行为也被称为查找的被动形式 DI(Dependency Injection) - IOC 的另一种表述方式:即组件以一些预先定义好的方式(例如: s