spring的IoC(Inversion of Control)4——XML注入实践

在上一篇中学习了如何注入简单的值,由于其可注入的类型很多,所以这里来尝试下。
例如,定义两个类,User.javaUserAddress.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;

然后生成对应的setget方法。在UserAddress.java中定义:

private String address;

类似的生产setgettoString方法即可。
然后,开始编写对应的beans.xml文件,不妨参考官方文档:https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-collection-elements
为了编写方便,可以在beans.xml文件的顶部右键选择Split Vertically,效果如下:
spring的IoC(Inversion of Control)4——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="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());
    }
}

结果:
spring的IoC(Inversion of Control)4——XML注入实践


参考视频: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的作用范围,可选有singletonprototyperequestsessionapplicationwebsocket,默认为singleton,表示每个Spring IoC容器中存在单个bean对象实例;prototype表示一个bean可以有为多个实例;request表示在单个HTTP请求中单个实例;session同理也是对一个HTTPSession单个实例;application表示ServletContext中单实例;websocket表示在WebSocket中单实例;

具体的指定方式如:

<bean id="accountService" class="com.something.DefaultAccountService" scope="singleton"/>
上一篇:Spring整合Mybatis时mybatis与mybatis-spring版本不一致出现的问题


下一篇:关于UnsatisfiedDependencyException: Error creating bean with name ‘requestMappingHandlerMapping‘..解决办法