Spring-依赖注入
依赖注入分为:普通,数组,List,Map,Set,Null,Properties,Bean。
目录结构:、
Address.java
package pojo; public class Address { private String address; public void setAddress(String address) { this.address = address; } public String getAddress() { return address; } @Override public String toString() { return "Address{" + "address='" + address + '\'' + '}'; } }
Student.java
package pojo; import java.util.*; public class Student { private String name; private Address address; private String[] books; private List<String> hobbys; private Map<String,String> card; private Set<String> games; private String wife; private Properties info; public String getWife() { return wife; } public void setWife(String wife) { this.wife = wife; } public Properties getInfo() { return info; } public void setInfo(Properties info) { this.info = info; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Address getAddress() { return address; } public void setAddress(Address address) { this.address = address; } public String[] getBooks() { return books; } public void setBooks(String[] books) { this.books = books; } public List<String> getHobbys() { return hobbys; } public void setHobbys(List<String> hobbys) { this.hobbys = hobbys; } public Map<String, String> getCard() { return card; } public void setCard(Map<String, String> card) { this.card = card; } public Set<String> getGames() { return games; } public void setGames(Set<String> games) { this.games = games; } @Override public String toString() { return "Student{" + "name='" + name + '\'' + ", address=" + address.toString() + ", books=" + Arrays.toString(books) + ", hobbys=" + hobbys + ", card=" + card + ", games=" + games + ", wife='" + wife + '\'' + ", info=" + info + '}'; } }
beans.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" xsi:schemaLocation="http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd"> <bean id="address" class="pojo.Address"> </bean> <bean id="student" class="pojo.Student"> <!-- 普通注入 --> <property name="name" value="苗可卓"/> <!-- Bean注入 --> <property name="address" ref="address"/> <!-- 数组注入 --> <property name="books"> <array> <value>红楼梦</value> <value>西游记</value> </array> </property> <!-- List注入 --> <property name="hobbys"> <list> <value>音乐</value> <value>打球</value> </list> </property> <!-- Map注入 --> <property name="card"> <map> <entry key="20183629" value="苗可卓"/> <entry key="20000228" value="苗迪"/> </map> </property> <!-- Set --> <property name="games"> <set> <value>LOL</value> <value>CF</value> </set> </property> <!-- null --> <property name="wife"> <null/> </property> <!-- Properties --> <property name="info"> <props> <prop key="学号">20183629</prop> </props> </property> </bean> </beans>
mytest.java
import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import pojo.Student; public class mytest { public static void main(String[] args) { ApplicationContext context =new ClassPathXmlApplicationContext("beans.xml"); Student student =(Student)context.getBean("student"); System.out.println(student.toString()); } }
运行结果:
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· 零经验选手,Compose 一天开发一款小游戏!
· 一起来玩mcp_server_sqlite,让AI帮你做增删改查!!