07,Spring - 基于xml的spring应用(spring中bean实例化的基本流程)

1,bean实例化基本流程

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-nPUbElro-1672905704549)(https://note.youdao.com/yws/res/4230/WEBRESOURCE80c5bb7928a762f317b1594cfab1f82d)]

2,流程基本演示

2.1,新建beans3.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 http://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="userDao" class="com.study.dao.impl.UserDaoImpl"></bean>

    <bean id="userService" class="com.study.service.impl.UserServiceImpl"></bean>
</beans>

2.2,新建测试类 BeanCreateFlow

package com.study.demoTest;

import com.study.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class BeanCreateFlow {
    public static void main(String[] args) {
        ApplicationContext applicationContext =
                new ClassPathXmlApplicationContext("beans3.xml");
        UserService userService = (UserService)applicationContext.getBean("userService");
        System.out.println(userService);
    }
}

2.3 debugger

在这里插入图片描述

在这里插入图片描述

3,beanDefinition

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-LSp62ErM-1672905704556)(https://note.youdao.com/yws/res/4251/WEBRESOURCE25e8c80620e97cc696f436c70f74d4b3)]

4,流程总结

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值