Spring Bean

命名Bean

  • 每个 bean 具有一个或多个标识符。这些标识符在承载 Bean 的容器内必须唯一。
  • id和name指定bean的标识符,必须唯一
  • 命名规则:驼峰式一般采用简单的类名称并将其初始字符转换为小写
  • 别名:name是在实际定义bean的地方指定别名,
  • 每个子系统都有自己的对象定义集。在基于 XML 的配置元数据中,可以使用元素来完成此操作。
  • @Bean()也可以定义别名

实例化Bean

Bean 定义本质上是创建一个或多个对象的方法。容器查看命名 bean 的配方,并使用该 bean 定义封装的配置元数据来创建(或获取)实际对象。

构造函数实例化

容器本身通过反射调用Class的构造函数直接创建 Bean,相当于new

set方法注入

这种方式需要存在无参构造以及set方法,因为实际是使用无参构造器,后利用set方法属性注入

<bean id="entity" class="com.jas.pojo.Entity">
    <property name="name" value="小明"/>
</bean>
有参构造

有参构造只需要有参构造器

<bean id="entity" class="com.jas.pojo.Entity">
    <constructor-arg name="name" value="小明"/>
</bean>
工厂实例化 factory-method

分为静态工厂方法和实例工厂方法。

private static Entity entity=new Entity();
public static Entity newEntity(){
    return entity;
}
<bean id="entity" class="com.jas.pojo.Entity" factory-method="newEntity">
    <property name="name" value="小明"/>
</bean>

元素注入

  • 常量注入value
  • Bean注入ref
  • 数组,List,set注入
<property name="array">
         <array/list/set>
                    <value>Element1</value>
                    <value>Element2</value>
                    <value>Element3</value>
         <array/list/set>
</property>
Map注入
<property name="map">
          <map>
               <entry key="key1" value="value1">
               <entry key="key2" value="value2">
               <entry key="key2" value="value2">
          </map>
</property>
  • Null注入
 <property name="nulll"><null/></property>
p(property)命名空间
导入约束 : xmlns:p="http://www.springframework.org/schema/p"
<bean id="entity" class="com.jas.pojo.Entity" p:name="小明"/>
c(Constructor)命名空间
 导入约束 : xmlns:c="http://www.springframework.org/schema/c"
 <bean id="entity" class="com.jas.pojo.Entity" c:name="小明"/>

Bean作用域

默认——singleton:Spring容器中仅存一个Bean实例,即单例模式,getBean从容器中取出的对象也为同一对象

<bean id="entity" class="com.jas.pojo.Entity" scope="singleton">
    <property name="name" value="小明"/>
</bean>
@Test
public static void Test(){
    ApplicationContext context =new ClassPathXmlApplicationContext("applicationContext.xml");
    Entity entity1 = context.getBean("entity", Entity.class);
    Entity entity2 = context.getBean("entity", Entity.class);
    System.out.println(entity1==entity2);
}
//output:true
  • prototype:getBean从容器中返回一个新实例
<bean id="entity" class="com.jas.pojo.Entity" scope="prototype">
    <property name="name" value="小明"/>
</bean>
    @Test
    public static void Test(){
    ApplicationContext context =new ClassPathXmlApplicationContext("applicationContext.xml");
    Entity entity1 = context.getBean("entity", Entity.class);
    Entity entity2 = context.getBean("entity", Entity.class);
    System.out.println(entity1==entity2);
}
//output:false
  • Request:在一次HTTP请求中,一个bean定义对应一个实例;该作用域仅在基于web的Spring ApplicationContext情形下有效。
  • Session:表示在一个HTTP Session中,一个bean定义对应一个实例。该作用域仅在基于web的Spring ApplicationContext情形下有效。
### Spring Boot 中如何定义和使用 Spring Bean #### 1. 使用 `@Component` 注解定义 Bean 可以通过在类上添加 `@Component` 注解来自动注册该类作为 Spring 容器中的一个 Bean。当启动应用时,Spring 的组件扫描机制会发现并加载带有此注解的类。 ```java import org.springframework.stereotype.Component; @Component public class MyService { public void performTask() { System.out.println("Executing task..."); } } ``` 此类会被自动检测到并实例化为名为 `myService` 的 bean[^2]。 #### 2. 配置类中使用 `@Bean` 方法定义 Bean 另一种常见的方式是在配置类里声明静态工厂方法,并在其上方加上 `@Bean` 注解。这种方式可以更灵活地控制 Bean 的创建过程以及初始化参数等。 ```java import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration public class AppConfig { @Bean public MyRepository myRepository() { return new InMemoryMyRepository(); } private static class InMemoryMyRepository implements MyRepository { /* ... */ } } ``` 这里定义了一个名为 `myRepository` 的bean,它由 `AppConfig.myRepository()` 方法返回的对象表示. #### 3. 处理同名 Bean 覆盖的情况 如果项目中有多个地方尝试定义相同的 Bean 名称,则默认情况下会导致冲突错误。为了支持这种情况下的覆盖操作,可以在 application.properties 文件中设置属性: ```properties spring.main.allow-bean-definition-overriding=true ``` 这使得后来者能够替换掉之前已经存在的相同名字的 Bean 实例[^1].
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值