JAVA-Spring Bean作用域

目录

目录

基本概念

Bean

作用域

spring支持的bean作用域有哪些?

概念

1. Singleton 作用域

2. Prototype 作用域

3. Request 作用域

4. Session 作用域

 实例:singletgn和prototype

 如果本篇博客对您有一定的帮助,大家记得留言+点赞+收藏哦。


近日研究Spring和SpringBoot的一些内容,给大家做一些分享,请大家多多提出您的宝贵意见

学习知识要了解其涉及到的基本概念,才能理解这个知识,并且做到融汇贯通。

基本概念

Bean

官网链接:核心技术 (spring.io)

 官网上介绍,bean是一个由Spring IoC容器实例化、组装和管理的对象。

作用域

首先,我们先了解什么是作用域,为什么要有作用域?

百度百科作用域概念:百度百科-验证

只要是代码,就至少有一个作用域

spring支持的bean作用域有哪些?

概念

① singletgn(唯一Bean实例)

使用该属性定义Bean时,IOC容器仅创建一个Bean实例,IOC容器每次返回的是同一个Bean实例。

② prototype(原型Bean)

使用该属性定义Bean时,lOC容器可以创建多个Bean实例,每次返回的都是一个新的实例。

③ request

该属性仅对HTTP请求产生作用,使用该属性定义Bean时,每次HTTP请求都会创建一个新的Bean,适用于WebApplicationContext环境。

④ session

该属性仅用于HTTP Session,同一个Session共享一个Bean实例。不同Session使用不同的实例。

⑤ global-session

该属性仅用于HTTP Session,同session作用域不同的是,所有的Session共享一个Bean实例。

1. Singleton 作用域

Singleton 是 Spring 默认的 Bean 作用域,它表示在整个应用程序中只存在一个 Bean 实例。以下是使用 Singleton 作用域创建 Bean 的示例:

@Configuration
public class AppConfig {
    @Bean
    @Scope("singleton")
    public MyBean myBean() {
        return new MyBean();
    }
}

在上面的示例中,myBean() 方法使用 @Scope("singleton") 注解来指定 Bean 的作用域为 Singleton。

2. Prototype 作用域

Prototype 作用域表示每次从容器中获取 Bean 时都会创建一个新的实例。以下是使用 Prototype 作用域创建 Bean 的示例:

@Configuration
public class AppConfig {
    @Bean
    @Scope("prototype")
    public MyBean myBean() {
        return new MyBean();
    }
}

在上面的示例中,myBean() 方法使用 @Scope("prototype") 注解来指定 Bean 的作用域为 Prototype。

3. Request 作用域

Request 作用域表示每次 HTTP 请求都会创建一个新的 Bean 实例,该 Bean 实例仅在当前请求范围内可见。以下是使用 Request 作用域创建 Bean 的示例:

@Configuration
public class AppConfig {
    @Bean
    @Scope("request")
    public MyBean myBean() {
        return new MyBean();
    }
}

在上面的示例中,myBean() 方法使用 @Scope("request") 注解来指定 Bean 的作用域为 Request。

4. Session 作用域

Session 作用域表示每个 HTTP Session 都会创建一个新的 Bean 实例,该 Bean 实例仅在当前 Session 范围内可见。以下是使用 Session 作用域创建 Bean 的示例:

@Configuration
public class AppConfig {
    @Bean
    @Scope("session")
    public MyBean myBean() {
        return new MyBean();
    }
}

 实例:singletgn和prototype

写了一个maven项目引入了spring-webmvc基础依赖,对singletgn和prototype二者做个比较

pom.xml文件

UserService文件

package com.tfjy.test;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

/**
 * @BelongsPackage: com.tfjy.test
 * @Author: aqiu
 * @Description: 服务类
 * @CreateTime: 2023-01-28 09:59
 * @Version: 1.0
 */
@Component
//@Scope("prototype")  //这里是开启注解,使用property类型的bean
public class UserService {

}

 bean.xml文件

<?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:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <!--开启注解的支持-->
    <context:annotation-config/>
    <!-- 自动扫描指定包及其子包下的所有Bean类 -->
    <context:component-scan base-package="com.tfjy.test"/>

    <!--    将UserService设置为原型bean-->
<!--    <bean id="UserService" class="com.tfjy.test.UserService" scope="prototype"></bean>-->

</beans>

 Test文件

import com.tfjy.test.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @BelongsProject: demo
 * @Author: aqiu
 * @Description: TODO
 * @CreateTime: 2023-01-28 10:01
 * @Version: 1.0
 */
public class Test {


    //bean验证
    @org.junit.Test
    public void beanTest(){
        ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");

        UserService userServiceOne = context.getBean("UserService", UserService.class);
        UserService userServiceTwo = context.getBean("UserService", UserService.class);

        System.out.println(userServiceOne);
        System.out.println(userServiceTwo);
        //通过equals方法判断两个对象是否相等
        if(userServiceOne.equals(userServiceTwo)){
            System.out.println("两次getBean方法,获得了同一个单例对象");
        }else{
            System.out.println("两次getBean方法,获得的不是同一个单例对象");
        }
    }


}

不做任何操作,默认的获得了同一个单例对象

 使用两种方式可以更换成property类型的bean

其一,使用注解的方式

在需要交由IOC容器管理的bean对象类上面添加**@Scope(“prototype”)**注解。

其二,使用xml配置文件的方式

 bean.xml文件中的

<!--将UserService设置为原型bean-->
<bean id="UserService" class="com.tfjy.test.UserService" scope="prototype"></bean>

 如果本篇博客对您有一定的帮助,大家记得留言+点赞+收藏哦。

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

江 流 儿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值