spring —— IoC 容器(一)

IoC 不是一种技术,而是一种设计思想,旨在降低代码之间的耦合性。Spring 通过 IoC 容器管理所有 Java 对象的实例化和初始化,控制对象与对象之间的依赖关系。

一、基于 XML 管理 bean

(一)通过 XML 获取 bean

public class User {private String name;private int age;public User(String name, int age) {this.name = name;this.age = age;}public User(){}public void setName(String name) {        this.name = name;}public void setAge(int age) {this.age = age;}
}
public class TestUser {@Testpublic void userTest(){ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");User user = (User) context.getBean("user");System.out.println(user);}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="user" class="com.fourth.user.User">       </bean>
</beans>

(二)使用 property 注入属性 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="user" class="com.fourth.user.User"><property name="name" value="tom"></property><property name="age" value="20"></property></bean>
</beans>

 此时在 TestUser 中获取bean,其实是通过无参构造和 set 方法注入。

(三)使用 constructor-arg 注入属性

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg></bean>
</beans>

 此时在 TestUser 中获取bean,其实是通过有参构造进行注入。

(四)注入对象类型属性

1、外部 bean 注入

package com.fourth.user;public class Person {private String pid;public Person(){}public void setPid(String pid) {this.pid = pid;}public Person(String pid) {this.pid = pid;}
}
package com.fourth.user;public class User {private String name;private int age;private Person person;public User(String name, int age, Person person) {this.name = name;this.age = age;this.person = person;}public void setName(String name) {this.name = name;}public void setAge(int age) {this.age = age;}public void setPerson(Person person) {this.person = person;}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="person" class="com.fourth.user.Person"><property name="pid" value="10010"></property></bean><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg><constructor-arg name="person" ref="person"></constructor-arg></bean>
</beans>

外部 bean 注入对象类型属性,通过 ref 进行引入。

2、内部 bean 注入 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg><constructor-arg name="person"><bean id="person" class="com.fourth.user.Person"><property name="pid" value="10010"></property></bean></constructor-arg></bean>
</beans>

 3、级联属性注入

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="person" class="com.fourth.user.Person"><constructor-arg name="pid" value="tom"></constructor-arg></bean><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg><constructor-arg name="person" ref="person"></constructor-arg><property name="person.pid" value="jerry"></property></bean>
</beans>

或者: 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg><constructor-arg name="person" ><bean id="person" class="com.fourth.user.Person"><constructor-arg name="pid" value="tom"></constructor-arg></bean></constructor-arg><property name="person.pid" value="jerry"></property></bean>
</beans>

  级联属性注入,首先通过外部 bean 或者内部 bean 进行引入,然后通过 value 更改对象内部的属性。

(五)注入数组类型属性

package com.fourth.user;public class User {private String name;private int age;private String[] hobby;public User(String name, int age, String[] hobby) {this.name = name;this.age = age;this.hobby = hobby;}public User() {}public void setName(String name) {this.name = name;}public void setAge(int age) {this.age = age;}public void setHobby(String[] hobby) {this.hobby = hobby;}public String getName() {return name;}public int getAge() {return age;}public String[] getHobby() {return hobby;}
}
package com.fourth.test;import com.fourth.user.User;
import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;import java.util.Arrays;public class TestUser {@Testpublic void userTest(){ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");User user = (User) context.getBean("user");System.out.println(Arrays.toString(user.getHobby()));}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg><constructor-arg name="hobby" ><array><value>eating</value><value>sleeping</value><value>playing</value></array></constructor-arg></bean>
</beans>

 本案例中,hobby 是一个 String 类型数组,对其进行属性注入通过 array 标签进行。

(六)注入 list 类型属性

package com.fourth.user;import java.util.List;public class User {private String name;private int age;private List<Person> personList;public User(String name, int age, List<Person> personList) {this.name = name;this.age = age;this.personList = personList;}public User() {}public void setName(String name) {this.name = name;}public void setAge(int age) {this.age = age;}public void setPersonList(List<Person> personList) {this.personList = personList;}public String getName() {return name;}public int getAge() {return age;}public List<Person> getPersonList() {return personList;}
}
package com.fourth.user;public class Person {private String pid;public Person(){}public void setPid(String pid) {this.pid = pid;}public Person(String pid) {this.pid = pid;}public String getPid() {return pid;}
}
package com.fourth.test;import com.fourth.user.Person;
import com.fourth.user.User;
import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class TestUser {@Testpublic void userTest(){ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");User user = (User) context.getBean("user");for(Person person:user.getPersonList()){System.out.println(person.getPid());}}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="person1" class="com.fourth.user.Person"><property name="pid" value="10011"></property></bean><bean id="person2" class="com.fourth.user.Person"><property name="pid" value="10086"></property></bean><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg><constructor-arg name="personList" ><list><ref bean="person1"></ref><ref bean="person2"></ref></list></constructor-arg></bean>
</beans>

(七)注入 map 类型属性 

package com.fourth.user;import java.util.Map;public class User {private String name;private int age;private Map<String,Person> personMap;public User(String name, int age, Map<String,Person> personMap) {this.name = name;this.age = age;this.personMap = personMap;}public User() {}public void setName(String name) {this.name = name;}public void setAge(int age) {this.age = age;}public void setPersonMap(Map<String,Person> personMap) {this.personMap = personMap;}public String getName() {return name;}public int getAge() {return age;}public Map<String,Person> getPersonMap() {return personMap;}
}
package com.fourth.user;public class Person {private String pid;public Person(){}public void setPid(String pid) {this.pid = pid;}public Person(String pid) {this.pid = pid;}public String getPid() {return pid;}
}
package com.fourth.test;import com.fourth.user.User;
import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class TestUser {@Testpublic void userTest(){ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");User user = (User) context.getBean("user");for(String key:user.getPersonMap().keySet()){System.out.println(user.getPersonMap().get(key).getPid());}}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="person1" class="com.fourth.user.Person"><property name="pid" value="10011"></property></bean><bean id="person2" class="com.fourth.user.Person"><property name="pid" value="10086"></property></bean><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg><constructor-arg name="personMap" ><map><entry><key><value>first</value></key><ref bean="person1"></ref></entry><entry><key><value>second</value></key><ref bean="person2"></ref></entry></map></constructor-arg></bean>
</beans>

(八)util 形式注入属性:对数组、list、map 的补充(1) 

以 map 类型为例:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:util="http://www.springframework.org/schema/util"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/utilhttp://www.springframework.org/schema/util/spring-util.xsdhttp://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="person1" class="com.fourth.user.Person"><property name="pid" value="10011"></property></bean><bean id="person2" class="com.fourth.user.Person"><property name="pid" value="10086"></property></bean><bean id="user" class="com.fourth.user.User"><constructor-arg name="name" value="tom"></constructor-arg><constructor-arg name="age" value="20"></constructor-arg><constructor-arg name="personMap" ref="map"></constructor-arg></bean><util:map id="map"><entry><key><value>first</value></key><ref bean="person1"></ref></entry><entry><key><value>second</value></key><ref bean="person2"></ref></entry></util:map></beans>

 (九)p 命名空间注入属性:对数组、list、map 的补充(2)

 同样以 map 类型为例:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:util="http://www.springframework.org/schema/util"xmlns:p="http://www.springframework.org/schema/p"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/utilhttp://www.springframework.org/schema/util/spring-util.xsdhttp://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="person1" class="com.fourth.user.Person"><property name="pid" value="10011"></property></bean><bean id="person2" class="com.fourth.user.Person"><property name="pid" value="10086"></property></bean><bean id="user" class="com.fourth.user.User" p:name="tom" p:age="20" p:personMap-ref="map"></bean><util:map id="map"><entry><key><value>first</value></key><ref bean="person1"></ref></entry><entry><key><value>second</value></key><ref bean="person2"></ref></entry></util:map></beans>

 等于是不再用 property 或者 constructor-arg 注入属性,而是用 p 进行注入。

(十)自动装配

package com.fourth.auto;public class Dao {public void runDao(){System.out.println("Hello World");}
}
package com.fourth.auto;public class Service {private Dao dao;public void setDao(Dao dao) {this.dao = dao;}public void runService(){dao.runDao();}
}
package com.fourth.auto;import org.junit.jupiter.api.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class TestService {private Service service;public void setService(Service service) {this.service = service;}public void runTestService(){service.runService();}@Testpublic void testMethod(){ApplicationContext context = new ClassPathXmlApplicationContext("bean-auto.xml");TestService testService = context.getBean("testService", TestService.class);testService.runTestService();}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"><bean id="dao" class="com.fourth.auto.Dao" ></bean><bean id="service" class="com.fourth.auto.Service" autowire="byType"></bean><bean id="testService" class="com.fourth.auto.TestService" autowire="byType"></bean>
</beans>

 

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/50530.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Three.js基础学习】17.imported-models

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 前言 课程回顾&#xff1a; 如何在three.js 中引入不同的模型&#xff1f; 1. 格式 &#xff08;不同的格式&#xff09; https://en.wikipedia.org/wiki/List_of_file_form…

杭州东网约车管理再出行方面取得的显著成效

随着科技的飞速发展&#xff0c;网约车已成为人们日常出行的重要选择。在杭州这座美丽的城市&#xff0c;网约车服务更是如雨后春笋般蓬勃发展。特别是杭州东站&#xff0c;作为杭州的重要交通枢纽&#xff0c;网约车管理显得尤为重要。近日&#xff0c;沧穹科技郑重宣告已助力…

达梦数据库系列—33.日志总结

目录 1、SQL日志 SQL 日志开启 SQL日志分析 2、Redo日志 3、归档日志 联机配置归档 手动配置归档 归档信息的查看 清理归档日志 4、闪回 查看闪回功能状态 开启闪回 闪回查询 5、其他事件日志 数据库实例日志 DMAP进程日志 数据库备份日志 dmwatcher日志 dm…

[Python][字典]详细讲解

目录 0.什么是字典&#xff1f;1.创建字典2.查找key3.新增/修改元素4.删除元素5.遍历字典元素6.取出所有 key 和 value7.合法的key类型 0.什么是字典&#xff1f; 字典是一种存储键值对(K-V)的结构 但是key不能重复 以C/C的视角看&#xff0c;就是map注意&#xff1a; 一个字典…

【STM32本科毕业设计】基于STM32的多功能MP3播放器设计

目录 一. 概述二. 系统硬件设计2.1 整体设计思路2.2 硬件器件的选择2.2.1 MP3解码芯片选择 2.2.2 收音机芯片选择2.2.3 温度传感器选择2.2.4 彩灯驱动芯片选择2.2.5 音效处理芯片选择2.2.6 EEPROM芯片选择2.2.7 功率放大芯片选择2.2.8 电源芯片选择2.2.9 人机交互设备选择 2.3 …

Django学习第一天(如何创建和运行app)

前置知识&#xff1a; URL组成部分详解&#xff1a; 一个url由以下几部分组成&#xff1a; scheme&#xff1a;//host:port/path/?query-stringxxx#anchor scheme:代表的是访问的协议&#xff0c;一般为http或者ftp等 host&#xff1a;主机名&#xff0c;域名&#xff0c;…

让数组有序的最少交换次数

Trick : 让数组有序的最少交换次数 Problem One 1224. 交换瓶子 - AcWing题库 有 N 个瓶子&#xff0c;编号 1∼N&#xff0c;放在架子上。 比如有 5 个瓶子&#xff1a; 2 1 3 5 4要求每次拿起 2 个瓶子&#xff0c;交换它们的位置。 经过若干次后&#xff0c;使得瓶子的序号…

Spring Security学习笔记(二)Spring Security认证和鉴权

前言&#xff1a;本系列博客基于Spring Boot 2.6.x依赖的Spring Security5.6.x版本 上一篇博客介绍了Spring Security的整体架构&#xff0c;本篇博客要讲的是Spring Security的认证和鉴权两个重要的机制。 UsernamePasswordAuthenticationFilter和BasicAuthenticationFilter是…

梧桐数据库:数据库技术中表之间的连接算法详解

在数据库技术中&#xff0c;表之间的连接&#xff08;Join&#xff09;是一个非常重要的操作&#xff0c;用于从多个表中检索相关数据。不同的连接算法有不同的性能特征&#xff0c;选择合适的连接算法可以显著提升查询效率。下面详细介绍几种常见的连接算法&#xff1a; 1. 嵌…

IPython的主要作用

IPython是一个功能强大的Python交互式shell&#xff0c;相比默认的Python shell&#xff0c;它提供了诸多增强功能和便利性&#xff0c;使得Python编程变得更加高效和愉悦。以下是对IPython的详细解析&#xff0c;包括其功能、组件、安装方法、使用方法以及一些高级功能。 IPy…

如何让LLM准确地输出一个json

这一直是一个难题&#xff0c;因为LLM具有很大的不确定性&#xff0c;而且如果你用过&#xff0c;你一定会看到类似于以下的输出情况: 啰嗦的输出 AI:好的&#xff0c;以下是对问题的json输出: json {"score":"yes" } <eos>形式错误 AI:{score:ye…

【JVM基础05】——组成-能不能解释一下方法区?

目录 1- 引言&#xff1a;方法区概述1-1 方法区是什么&#xff1f;(What)1-2 为什么用方法区&#xff1f;方法区的作用 (Why) 2- ⭐核心&#xff1a;详解方法区(How)2-1 能不能解释一下方法区&#xff1f;2-2 元空间内存溢出问题2-3 什么是常量池&#xff1f;2-4 运行时常量池 …

SAP PP学习笔记31 - 计划运行的步骤2 - Scheduling(日程计算),BOM Explosion(BOM展开)

上一章讲了计划运行的5大步骤中的前两步&#xff0c;计算净需求和计算批量大小。 SAP PP学习笔记30 - 计划运行的步骤1 - Net requirements calculation 计算净需求(主要讲了安全库存要素)&#xff0c;Lot-size calculation 计算批量大小-CSDN博客 本章继续讲计划运行的后面几…

360:从安全卫士到智能生活——一个科技巨头的成长之路

自2005年成立以来&#xff0c;360公司&#xff0c;全称北京奇虎科技有限公司&#xff0c;已经成为中国乃至全球科技领域的一股不可忽视的力量。从最初的互联网安全服务提供商&#xff0c;到如今涉足智能硬件、云计算、大数据、人工智能等领域的多元化科技公司&#xff0c;360的…

**卷积神经网络典型CNN**

LeNet&#xff1a;最早用于数字识别的CNN AlexNet&#xff1a;2012年ILSVRC比赛冠军&#xff0c;远超第二名的CNN&#xff0c;比LeNet更深&#xff0c;用多层小卷积叠加来替换单个的大卷积 ZF Net&#xff1a;2013ILSVRC冠军 GoogleNet&#xff1a;2014ILSVRC冠军 VGGNet&a…

Unity UGUI 之 自动布局组件

本文仅作学习笔记与交流&#xff0c;不作任何商业用途 本文包括但不限于unity官方手册&#xff0c;唐老狮&#xff0c;麦扣教程知识&#xff0c;引用会标记&#xff0c;如有不足还请斧正 本文在发布时间选用unity 2022.3.8稳定版本&#xff0c;请注意分别 1.什么是自动布局组件…

【头歌】Hive表DDL操作(一)答案

本专栏已收集头歌大数据所有答案 以供参考 第1关&#xff1a;Create/Alter/Drop 数据库 答案 复制点击测评 代码块&#xff1a; #********* Begin *********# echo " CREATE DATABASE IF NOT EXISTS test1 LOCATION /hive/test1WITH DBPROPERTIES(creatorJohn,date2019-…

容器化部署革新:Mojo模型的自定义动态配置

容器化部署革新&#xff1a;Mojo模型的自定义动态配置 在当今快速发展的机器学习领域&#xff0c;Mojo模型代表了一种高效、灵活的模型部署方式。容器化部署作为一种流行的技术&#xff0c;能够为模型提供一个轻量级、可移植的运行环境。本文将探讨如何在Mojo模型中实现模型的…

【Node.js入门精要】从零开始的开发之旅

说明文档&#xff1a;Node.js 教程_w3cschool 概念 Node.js 是一个开源、跨平台的 JavaScript 运行时环境&#xff0c;基于 Chrome 的 V8 引擎构建&#xff0c;专为构建高性能和可扩展的网络应用程序而设计的服务端语言。它采用事件驱动、非阻塞 I/O 模型&#xff0c;能够处理大…

GB28181摄像头管理平台WVP视频平台SQL注入漏洞复现 [附POC]

文章目录 GB28181摄像头管理平台WVP视频平台SQL注入漏洞复现 [附POC]0x01 前言0x02 漏洞描述0x03 影响版本0x04 漏洞环境0x05 漏洞复现1.访问漏洞环境2.构造POC3.复现 GB28181摄像头管理平台WVP视频平台SQL注入漏洞复现 [附POC] 0x01 前言 免责声明&#xff1a;请勿利用文章内…