(五)Spring教程——Spring IoC容器(上)

在Spring框架中,Bean的实例化和组装都是IoC容器配置元数据完成的。Spring框架提供的容器主要是基于BeanFactory和ApplicationContext两个接口,一种是实现BeanFactory接口的简单容器,另一种是实现ApplicationContext接口的高级容器。

BeanFactory是比较传统的IoC实现方式,容器内的对象主动使用容器所提供的API来查找自己所依赖的组件。这种方式可以降低对象间的耦合度,同时也增加了对象对容器API的依赖。

Spring框架可以通过名称、类型和注解这3种方式在BeanFactory接口种进行依赖查找。

在pom.xml中添加springframework的引用

<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->

<dependency>

<groupId>org.springframework</groupId>

<artifactId>spring-context</artifactId>

<version>4.0.0.RELEASE</version>

</dependency>

点击右侧的刷新按钮,下载添加的依赖

在main/resouce文件夹中添加test.xml文件,文件的内容如下

java 复制代码
<?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="test" class="com.example.servlet001.bean.User">

        <property name="userId" value="1" />

        <property name="userName" value="用户1" />

</bean>

</beans>

在com.example.servlet001包中添加名字为bean的软件包,然后在该包中添加User类,User类的内容如下

java 复制代码
package com.example.servlet001.bean;



public class User {

    public String getUserName() {

        return userName;

    }



    public void setUserName(String userName) {

        this.userName = userName;

    }



    public String getUserId() {

        return userId;

    }



    public void setUserId(String userId) {

        this.userId = userId;

    }



    String userName;

    String userId;



    @Override

    public String toString() {

        return "User{" +

                "userName='" + userName + '\'' +

                ", userId='" + userId + '\'' +

                '}';

    }

}

添加Demo1.java类测试使用配置的加载User类

java 复制代码
package com.example.servlet001;



import com.example.servlet001.bean.User;

import org.springframework.beans.factory.BeanFactory;

import org.springframework.beans.factory.xml.XmlBeanFactory;

import org.springframework.core.io.ClassPathResource;



public class Demo1 {

    public static void main(String[] args) {

        BeanFactory factory=new XmlBeanFactory(new ClassPathResource("test.xml"));

        User user=(User)factory.getBean("test");

        System.out.println(user);

    }

}

运行该测试类后的输出结果为

相关推荐
汪洪墩13 分钟前
【Mars3d】设置backgroundImage、map.scene.skyBox、backgroundImage来回切换
开发语言·javascript·python·ecmascript·webgl·cesium
云空18 分钟前
《QT 5.14.1 搭建 opencv 环境全攻略》
开发语言·qt·opencv
Yvemil718 分钟前
《开启微服务之旅:Spring Boot 从入门到实践》(三)
java
Anna。。20 分钟前
Java入门2-idea 第五章:IO流(java.io包中)
java·开发语言·intellij-idea
.生产的驴41 分钟前
SpringBoot 对接第三方登录 手机号登录 手机号验证 微信小程序登录 结合Redis SaToken
java·spring boot·redis·后端·缓存·微信小程序·maven
我曾经是个程序员43 分钟前
鸿蒙学习记录
开发语言·前端·javascript
爱上语文44 分钟前
宠物管理系统:Dao层
java·开发语言·宠物
顽疲1 小时前
springboot vue 会员收银系统 含源码 开发流程
vue.js·spring boot·后端
王ASC1 小时前
SpringMVC的URL组成,以及URI中对/斜杠的处理,解决IllegalStateException: Ambiguous mapping
java·mvc·springboot·web
撒呼呼1 小时前
# 起步专用 - 哔哩哔哩全模块超还原设计!(内含接口文档、数据库设计)
数据库·spring boot·spring·mvc·springboot