Spring复习:(1) DefaultListableBeanFactory和BeanDefinitionReader

这篇具有很好参考价值的文章主要介绍了Spring复习:(1) DefaultListableBeanFactory和BeanDefinitionReader。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

一、beans11.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"
       xmlns:c="http://www.springframework.org/schema/c"
       xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
  https://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean id="student" class="cn.edu.tju.domain.Student">
        <property name="name" value="tju"/>
        <property name="age" value="33"/>
    </bean>




</beans>

二、Student类:

package cn.edu.tju.domain;

public class Student {
    private String name;
    private int age;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public String toString() {
        return "Student{" +
                "name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}

三、主类:文章来源地址https://www.toymoban.com/news/detail-524224.html

package cn.edu.tju;

import cn.edu.tju.domain.Student;
import org.springframework.beans.factory.support.BeanDefinitionReader;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;

public class Start14 {
    public static void main(String[] args) {
        Resource resource = new ClassPathResource("beans11.xml");
        DefaultListableBeanFactory factory = new DefaultListableBeanFactory();
        BeanDefinitionReader beanDefinitionReader = new XmlBeanDefinitionReader(factory);
        beanDefinitionReader.loadBeanDefinitions(resource);

        Student student = factory.getBean("student", Student.class);
        System.out.println(student);

    }
}

到了这里,关于Spring复习:(1) DefaultListableBeanFactory和BeanDefinitionReader的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • spring复习:(33)AopProxyFactory接口

    该接口只用一个方法: createAopProxy,用来创建Aop代理对象,它只有一个实现类:DefaultAopProxyFactory. public class DefaultAopProxyFactory implements AopProxyFactory, Serializable { }

    2024年02月16日
    浏览(28)
  • Spring复习:(59)@Qualifier注解

    @Qualifier注解用来指定自动注入时合作bean需要满足的qualifier的名称,如果一个bean没有指定qualifier属性,则用它的id为qualifier,来给别的bean提供注入。 示例 ##########################################################

    2024年02月11日
    浏览(32)
  • Java知识复习(八)Spring基础

    Spring :是一款开源的轻量级 Java 开发框架,旨在提高开发人员的开发效率以及系统的可维护性 Spring主要指Spring Framework,就是指如上图所示的各项功能模块 SpringMVC主要指一种架构,MVC分别是Model模型、View视图、Controller控制器的简写,核心思想就是将数据、显示和业务逻辑分

    2023年04月18日
    浏览(43)
  • spring复习: (16) AbstractBeanFactory之doCreateBean

    总体流程: 一、 先调用getSingleton,尝试从缓存中获取bean 如果获取bean成功,则调用getObjectForBeanInstance(sharedInstance, name, beanName, null); 该方法主要是通过区分普通bean和工厂bean来决定是返回原始的bean还是工厂bean通过调用getObject方法产生的bean. 二、如果第一步中sharedInstance为null,则

    2024年02月15日
    浏览(31)
  • spring复习:(39)注解方式的ProxyFactoryBean

    一、定义接口 二、定义实现类: 三、定义配置类,配置业务bean、advisor bean、ProxyFactoryBean 四、定义主类,获取ProxyFactoryBean并使用 五、运行结果

    2024年02月16日
    浏览(35)
  • spring复习:(18)给bean的属性赋值

    类: AbstractAutowireCapableBeanFactory: 其中populateBean用来用我们配置文件里的属性来给bean的属性赋值: 其中applyPropertyValues(beanName, mbd, bw, pvs);真正进行了赋值. 其中调用了bw.setPropertyValues:,代码: setPropertyValues代码: 其中调用了:setPropertyValue(pv);这个方法的代码: 调用setPropertyVal

    2024年02月16日
    浏览(34)
  • spring复习:(34)配置文件的方式创建ProxyFactoryBean

    一、配置文件 二、实现类: 三、主类: 四、运行结果

    2024年02月16日
    浏览(33)
  • spring复习:(42)配置文件的方式实现事务(TransactionProxyFactoryBean)

    一、定义服务接口: 二、定义服务实现类 三、配置文件: 四、主类,调用TransactionProxyFactoryBean

    2024年02月16日
    浏览(35)
  • 2023年了,复习了一下spring boot配置使用mongodb

    MongoDB是一个基于分布式文件存储的开源数据库系统,使用C++语言编写。它是一个介于关系数据库和非关系数据库之间的产品,具有类似关系数据库的功能,但又有一些非关系数据库的特点。MongoDB的数据模型比较松散,采用类似json的bson格式,可以灵活地存储各种类型的数据

    2024年02月08日
    浏览(57)
  • Spring复习:(55)ApplicationContext中BeanFactoryPostProcessor是怎么添加到容器的?

    容器创建时会调用AbstractApplicationContext的refresh方法,其中会调用invokeBeanFactoryPostProcessor方法,如下图 invokeBeanFactoryPostProcessors代码如下: 其中调用的PostProcessorRegistrationDelegate的invokeBeanFactoryPostProcessors方法代码如下: 可以从上图看到,首先获取类型为BeanFactoryPostProcessor的所有

    2024年02月11日
    浏览(36)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包