spring的IoC(Inversion of Control)4——XML注入实践
作者:互联网
在上一篇中学习了如何注入简单的值,由于其可注入的类型很多,所以这里来尝试下。
例如,定义两个类,User.java
和UserAddress.java
:
在User.java
类中定义如下属性:
private int age;
private String name;
private String[] hobbeys;
private List<String> cards;
private Map<String, String> girlfirends;
private Set<String> houses;
private UserAddress address;
然后生成对应的set
和get
方法。在UserAddress.java
中定义:
private String address;
类似的生产set
、get
和toString
方法即可。
然后,开始编写对应的beans.xml
文件,不妨参考官方文档:https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-collection-elements
为了编写方便,可以在beans.xml
文件的顶部右键选择Split Vertically
,效果如下:
比较方便。然后就可以开始了。
<?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="weizu" class="com.weizu.pojo.User">
<property name="age" value="23"></property>
<property name="name" value="张三"></property>
<property name="hobbeys">
<array>
<value>抽烟</value>
<value>喝酒</value>
</array>
</property>
<property name="cards">
<list>
<value>123131231312</value>
<value>123131231312</value>
</list>
</property>
<property name="girlfirends">
<map>
<entry key="one" value="对象1"/>
<entry key="two" value="对象2"/>
</map>
</property>
<property name="houses">
<set>
<value>北京</value>
<value>上海</value>
</set>
</property>
<property name="address">
<null/>
</property>
</bean>
</beans>
测试:
import com.weizu.pojo.User;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class myTest {
@Test
public void Test(){
// create and configure beans
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
User userService = (User) context.getBean("weizu");
System.out.println(userService.toString());
}
}
结果:
参考视频:https://www.bilibili.com/video/BV1WE411d7Dv?p=9&spm_id_from=pageDriver
参考文档:https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-collection-elements
当有多个不同的beans-xxx.xml
文件时,可以定义一个总的XML
,然后在其中使用import
引入,如:
<beans>
<import resource="services.xml"/>
<import resource="resources/messageSource.xml"/>
<import resource="/resources/themeSource.xml"/>
<bean id="bean1" class="..."/>
<bean id="bean2" class="..."/>
</beans>
services.xml
的位置必须位于classpath location
,而后面的两个的位置必须在resources
下,这些路径都是相对路径。当然这个路径可以指定为绝对路径,如:file:C:/config/services.xml
或者classpath:/config/services.xml
。
在 Spring IoC
容器中,可以托管多个bean
,在配置的时候,可以配置如下的一些数据:
class
限定,指定bean
的所属类;name
指定bean
的实例化名称;scope
指定bean
的作用范围,可选有singleton
、prototype
、request
、session
、application
、websocket
,默认为singleton
,表示每个Spring IoC
容器中存在单个bean
对象实例;prototype
表示一个bean
可以有为多个实例;request
表示在单个HTTP
请求中单个实例;session
同理也是对一个HTTP
的Session
单个实例;application
表示ServletContext
中单实例;websocket
表示在WebSocket
中单实例;
具体的指定方式如:
<bean id="accountService" class="com.something.DefaultAccountService" scope="singleton"/>
标签:Control,XML,Inversion,xml,spring,private,bean,实例,beans 来源: https://blog.csdn.net/qq_26460841/article/details/115041065