当前位置: 首页 > news >正文

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.xsdhttp://www.springframework.org/schema/utilhttp://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;}@Overridepublic 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;}@Overridepublic 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 容器中获取 beanPerson person = (Person)applicationContext.getBean("person");//2 使用 beanSystem.out.println(person);

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

-------------------------------------------------------------------------------------------------------------------------------- 

http://www.lryc.cn/news/298421.html

相关文章:

  • 揭秘外观模式:简化复杂系统的关键设计策略
  • Nginx 命令(Ubuntu)
  • 从github上拉取项目到pycharm中
  • python从入门到精通(十八):python爬虫的练习案列集合
  • 2.12作业
  • 树莓派4B(Raspberry Pi 4B) 使用docker搭建单机版nacos
  • C++入门学习(二十七)跳转语句—continue语句
  • JPEG图像格式加速神经网络训练--使用DCT训练CNN
  • 【代码】Processing笔触手写板笔刷代码合集
  • Junit常用注解
  • 【机器学习】支持向量机(SVM)
  • C语言指针全解
  • rtt设备io框架面向对象学习-看门狗设备
  • 加固平板电脑丨三防智能平板丨工业加固平板丨智能城市管理
  • Redis的配置文件
  • 懒人精灵 之 Lua 捕获 json解析异常 ,造成的脚本停止.
  • Python 列表操作详解
  • 【Jenkins】Jenkins关闭Jenkins关闭、重启
  • 【Linux】学习-动静态库
  • 人工智能之数学基础【最小二乘法】
  • 【Java安全】ysoserial-URLDNS链分析
  • Nginx报错合集(502 Bad Gateway,504 Gateway nginx/1.18.0 (Ubuntu) 等等报错)
  • Rust开发WASM,WASM Runtime运行
  • 快速重启网络服务 IP Helper
  • 【MySQL】MySQL函数学习和总结
  • MySQL进阶查询篇(7)-触发器的创建和使用
  • 前端面试题——JS实现反转链式表
  • 小周带你正确理解Prompt-engineering,RAG,fine-tuning工程化的地位和意义
  • 【精选】java多态进阶——多态练习测试
  • Git详细讲解