spring框架概述复习

一、Spring框架概述

1.spring框架组成

​ ①:IOC容器;

​ ②:Aop;

​ ③:JdbcTemplate;

​ ④:事务管理;

​ 额外介绍:spring5新特性

2.spring两大核心

​ IOC容器和Aop面向切面

3.入门案例

​ 第一步,导入spring相关的包并加入模块的依赖;

{% asset_image 1.png %}

​ 第二步,创建相关JavaBean;

​ 第三步,在配置xml文件中创建JavaBean对象

<bean id="person" class="com.lazy.demo.Person">bean>

​ 第四步,在调用创建的对象

    public void testBegin(){
     
        //1.加载配置文件
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("demo.xml");
        //2.获取创建的对象
        Person person = (Person) context.getBean("person");
        //3.调用对象
        System.out.println(person);
        person.say();
    }

你可能感兴趣的:(Spring5学习,spring,程序人生)