Spring 如何配置 bean (XML 方式)

请直接看原文:Spring 如何配置 bean (XML 方式)_spring 在哪配置bean 文件-CSDN博客


Java Bean 如何配置配置到 spring 容器中

基于 XML 的配置

通过生成 applicationContext.xml 文件,声明命名空间来配置 Java 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:p="http://www.springframework.org/schema/p"
	xmlns:util="http://www.springframework.org/schema/util"
	xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
						http://www.springframework.org/schema/util
						http://www.springframework.org/schema/util/spring-util-4.0.xsd"
						>	
	
</beans>

如何配置 Java Bean ?,这里声明一个 Person 类、Car 类,并且生成 getter,setter 方法。

Person. java

复制代码
package com.test.helloworld;

public class Person {
	private String name;
	private String age;
    private Car car;
    public Car getCar() {
		return car;
	}
	public void setCar(Car car) {
		this.car = car;
	}
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getAge() {
		return age;
	}
	public void setAge(String age) {
		this.age = age;
	}
	public Person() {
		System.out.println("无参构造函数");
	}
    public Person(String name, String age, Car car) {
		super();
		this.name = name;
		this.age = age;
		this.car = car;
	}
    
	@Override
	public String toString() {
		return "Person [name=" + name + ", age=" + age + "]";
	}
	
}

Car.java

复制代码
package com.test.helloworld;

public class Car {
	private String brand;
	private Double price;
	public String getBrand() {
		return brand;
	}
	public void setBrand(String brand) {
		this.brand = brand;
	}
	public Double getPrice() {
		return price;
	}
	public void setPrice(Double price) {
		this.price = price;
	}
	@Override
	public String toString() {
		return "Car [brand=" + brand + ", price=" + price + "]";
	}
	
}

依赖注入:属性注入

也就是 setter 注入,通过 setter 方法进行属性注入。

再 xml 文件的 beans 标签中添加 bean 标签,书写格式如下

复制代码
	<bean id="person" class="com.test.helloworld.Person">
		<property  name="name" value="小明"></property>
		<property  name="age" value="20"></property>
        <property  name="car" ref="car1"></property>
        
	</bean>
    <bean id="car1" class="com.test.helloworld.Car">
            <property name="brand" value="BMW"></property>
            <property name="price" value="350000"></property>
      </bean>

其中:

bean : 表示配置一个 bean,这个 bean 会在 IOC 容器启动的时候,被 IOC 容器加载(实例化),并且在 IOC 容器中管理这个 bean

  • id : bean的名称,是一个唯一的名称

  • class : 这个bean对应的类型的全类名

  • property : 这个标签表示给 IOC 容器中管理的这个 bean 设置属性

    • name : 属性名 ( 对应的是JavaBean风格的属性名 , 也就是 setter 方法 )
    • value 或者 value 标签 : 需要设置的属性值
    • ref 或者 ref 标签 :表示引用其他的bean

依赖注入:构造注入

我们的字段可以采用有参构造函数初始化,可以通过构造函数注入

复制代码
    <bean id="person" class="com.test.helloworld.Person">
            <constructor-arg value="小王"></constructor-arg>
            <constructor-arg value="18"></constructor-arg>
            <constructor-arg ref="car1"></constructor-arg>
      </bean>
       <bean id="car1" class="com.test.helloworld.Car">
            <property name="brand" value="BMW"></property>
            <property name="price" value="350000"></property>
      </bean>

参数顺序

这里是按照参数的顺序, 我们也可以通过设置添加 index 属性来设置参数顺序。

复制代码
    <bean id="person" class="com.test.helloworld.Person">
                <constructor-arg value="18" index="0" ></constructor-arg>
                <constructor-arg value="小王" index="1"></constructor-arg>
                <constructor-arg ref="car1" index="3"></constructor-arg>
       </bean>
       <bean id="car1" class="com.test.helloworld.Car">
            <property name="brand" value="BMW"></property>
            <property name="price" value="350000"></property>
      </bean>
  • index : 通过 index 属性可以设置构造注入传入参数的顺序,从 0 开始到参数个数 -1 结束

参数类型

还可以通过设置参数(添加 type 属性)的类型,来匹配相应的构造函数,实例化对象。

复制代码
		<bean id="person" class="com.test.helloworld.Person">
            <constructor-arg value="18" index="0" type="java.lang.String" ></constructor-arg>
            <constructor-arg value="小王" index="1" type="java.lang.String"></constructor-arg>
            <constructor-arg ref="car1" index="3"></constructor-arg>
      </bean>
       <bean id="car1" class="com.test.helloworld.Car">
            <property name="brand" value="BMW"></property>
            <property name="price" value="350000"></property>
      </bean>

最后

通过生成 ApplicationContext 对象(IOC 容器)来获得 bean 对象。

复制代码
       1 启动 SpringIOC 容器
       ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
       //2 从 IOC 容器中获取 bean
		Person person = (Person)applicationContext.getBean("person");
		//2 使用 bean
		System.out.println(person);

其中,XML 文件现在我的是放在 src 的一级目录下。


相关推荐
JosieBook4 分钟前
【SpringBoot】37 核心功能 - 高级特性- Spring Boot 中的 自定义 Starter 完整教程
java·spring boot·后端
小二·23 分钟前
Elasticsearch 面试题精编(26题|含答案|分类整理)
java·大数据·elasticsearch
BD_Marathon32 分钟前
在 Linux 环境中配置 Eclipse 以开发 Hadoop 应用
java·hadoop·eclipse
草莓熊Lotso1 小时前
C++ 二叉搜索树(BST)完全指南:从概念原理、核心操作到底层实现
java·运维·开发语言·c++·人工智能·经验分享·c++进阶
oliveira-time1 小时前
单例模式中的饿汉式
java·开发语言
凌波粒1 小时前
SpringMVC基础教程(1)--MVC/DispathcerServlet
java·spring·mvc
武子康1 小时前
Java-173 Neo4j + Spring Boot 实战:从 Driver 到 Repository 的整合与踩坑
java·数据库·spring boot·后端·spring·nosql·neo4j
凌波粒1 小时前
SpringMVC基础教程(2)--Controller/RestFul风格/JSON/数据转发和重定向
java·后端·spring·json·restful
老鼠只爱大米2 小时前
Java 设计模式之适配器模式:系统集成的万能接口
java·设计模式·适配器模式·adapter·java设计模式
一叶飘零_sweeeet2 小时前
Java+EasyExcel 打造学习平台视频学习时长统计系统
java·报表·easyexcel