Spring入门

荒凉一梦 提交于 2019-12-22 05:13:02

Spring入门知识

Spring概述

  • 轻量级的DI/IOC与AOP的容器框架

Spring主要作用

1.Bean容器

2.其他框架集成

BeanFactory与ApplicationContext的区别

  • ApplicationContext是BeanFactory的子类,它拥有更加强大的一些方法(邮件、国际化…),
  • BeanFactory创建的Bean默认是懒加载,ApplicationContext是迫切加载

引入架包

spring-core:依赖注入IoC与DI的最基本实现
spring-beans:Bean工厂与bean的装配
spring-context:spring的context上下文即IoC容器
spring-expression:spring表达式语言

配置文件模版

<?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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
    <bean id="moocAppctx" class="imooc_spring.test.aware.MoocApplicationContext"
        init-method="hhhh">
    </bean>
</beans>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!