Spring中使用inner bean

简介:

有点类似java 内部类。看个demo。假设有下面的一个bean:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public  class  Customer
{
     private  Person person;
  
     public  Customer(Person person) {
         this .person = person;
     }
  
     public  void  setPerson(Person person) {
         this .person = person;
     }
  
     @Override
     public  String toString() {
         return  "Customer [person="  + person +  "]" ;
     }
}

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
public  class  Person
{
     private  String name;
     private  String address;
     private  int  age;
  
     //getter and setter methods
  
     @Override
     public  String toString() {
         return  "Person [address="  + address + ",
                                age= " + age + " , name= " + name + " ]";
     }  
}

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
     xsi:schemaLocation="http://www.springframework.org/schema/beans
  
     < bean  id="CustomerBean" class="com.mkyong.common.Customer">
         < property  name="person" ref="PersonBean" />
     </ bean >
  
     < bean  id="PersonBean" class="com.mkyong.common.Person">
         < property  name="name" value="mkyong" />
         < property  name="address" value="address1" />
         < property  name="age" value="28" />
     </ bean >
  
</ beans >

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
     xsi:schemaLocation="http://www.springframework.org/schema/beans
  
     < bean  id="CustomerBean" class="com.mkyong.common.Customer">
         < property  name="person">
             < bean  class="com.mkyong.common.Person">
                 < property  name="name" value="mkyong" />
                 < property  name="address" value="address1" />
                 < property  name="age" value="28" />
             </ bean >
         </ property >
     </ bean >
</ beans >

  我们也可以使用构造函数注入

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
     xsi:schemaLocation="http://www.springframework.org/schema/beans
  
     < bean  id="CustomerBean" class="com.mkyong.common.Customer">
         < constructor-arg >
             < bean  class="com.mkyong.common.Person">
                 < property  name="name" value="mkyong" />
                 < property  name="address" value="address1" />
                 < property  name="age" value="28" />
             </ bean >
         </ constructor-arg >
     </ bean >
</ beans >

  Note
注意,在inner bean中,id和name不是必须的,因为他们会被容器忽略。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import  org.springframework.context.ApplicationContext;
import  org.springframework.context.support.ClassPathXmlApplicationContext;
  
public  class  App
{
     public  static  void  main( String[] args )
     {
         ApplicationContext context =
           new  ClassPathXmlApplicationContext( new  String[] { "Spring-Customer.xml" });
  
         Customer cust = (Customer)context.getBean( "CustomerBean" );
         System.out.println(cust);
  
     }
}
目录
相关文章
|
3月前
|
XML Java 数据格式
Spring5入门到实战------7、IOC容器-Bean管理XML方式(外部属性文件)
这篇文章是Spring5框架的实战教程,主要介绍了如何在Spring的IOC容器中通过XML配置方式使用外部属性文件来管理Bean,特别是数据库连接池的配置。文章详细讲解了创建属性文件、引入属性文件到Spring配置、以及如何使用属性占位符来引用属性文件中的值。
Spring5入门到实战------7、IOC容器-Bean管理XML方式(外部属性文件)
|
21天前
|
XML Java 数据格式
Spring从入门到入土(bean的一些子标签及注解的使用)
本文详细介绍了Spring框架中Bean的创建和使用,包括使用XML配置文件中的标签和注解来创建和管理Bean,以及如何通过构造器、Setter方法和属性注入来配置Bean。
56 9
Spring从入门到入土(bean的一些子标签及注解的使用)
|
2月前
|
缓存 安全 Java
Spring框架中Bean是如何加载的?从底层源码入手,详细解读Bean的创建流程
从底层源码入手,通过代码示例,追踪AnnotationConfigApplicationContext加载配置类、启动Spring容器的整个流程,并对IOC、BeanDefinition、PostProcesser等相关概念进行解释
133 24
Spring框架中Bean是如何加载的?从底层源码入手,详细解读Bean的创建流程
|
12天前
|
Java 测试技术 Windows
咦!Spring容器里为什么没有我需要的Bean?
【10月更文挑战第11天】项目经理给小菜分配了一个紧急需求,小菜迅速搭建了一个SpringBoot项目并完成了开发。然而,启动测试时发现接口404,原因是控制器包不在默认扫描路径下。通过配置`@ComponentScan`的`basePackages`字段,解决了问题。总结:`@SpringBootApplication`默认只扫描当前包下的组件,需要扫描其他包时需配置`@ComponentScan`。
|
2月前
|
XML Java 数据格式
Spring IOC—基于XML配置Bean的更多内容和细节(通俗易懂)
Spring 第二节内容补充 关于Bean配置的更多内容和细节 万字详解!
183 18
Spring IOC—基于XML配置Bean的更多内容和细节(通俗易懂)
|
2月前
|
XML Java 数据格式
spring复习02,xml配置管理bean
详细讲解了Spring框架中基于XML配置文件管理bean的各种方式,包括获取bean、依赖注入、特殊值处理、属性赋值、集合类型处理、p命名空间、bean作用域及生命周期和自动装配。
spring复习02,xml配置管理bean
|
21天前
|
Java 开发者 Spring
Spring bean的生命周期详解!
本文详细解析Spring Bean的生命周期及其核心概念,并深入源码分析。Spring Bean是Spring框架的核心,由容器管理其生命周期。从实例化到销毁,共经历十个阶段,包括属性赋值、接口回调、初始化及销毁等。通过剖析`BeanFactory`、`ApplicationContext`等关键接口与类,帮助你深入了解Spring Bean的管理机制。希望本文能助你更好地掌握Spring Bean生命周期。
53 1
|
23天前
|
Java Spring
获取spring工厂中bean对象的两种方式
获取spring工厂中bean对象的两种方式
17 1
|
25天前
|
Java 开发者 Spring
Spring bean的生命周期详解!
本文详细介绍了Spring框架中的核心概念——Spring Bean的生命周期,包括实例化、属性赋值、接口回调、初始化、使用及销毁等10个阶段,并深入剖析了相关源码,如`BeanFactory`、`DefaultListableBeanFactory`和`BeanPostProcessor`等关键类与接口。通过理解这些核心组件,读者可以更好地掌握Spring Bean的管理和控制机制。
63 1
|
2月前
|
XML Java 数据格式
spring复习03,注解配置管理bean
Spring框架中使用注解配置管理bean的方法,包括常用注解的标识组件、扫描组件、基于注解的自动装配以及使用注解后的注意事项,并提供了一个基于注解自动装配的完整示例。
spring复习03,注解配置管理bean