Spring 基础之IoC

2022-12-25  本文已影响0人  Tinyspot

1. Spring 体系结构

framework.png

1.1 核心概念

1.2 设计原则

2. IOC

2.1 IOC 与 DI 的区别

2.2 依赖注入

依赖指的是 Bean 实例中的属性
依赖(属性)分为:简单类型(8种基本类型和String 类型)的属性,POJO类型的属性,集合数组类型的属性

2.3 关于 Spring IOC

3. 命名空间

<?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.xsd"
       default-autowire="byName">

    <import resource="classpath:order-process.xml"/>

    <context:property-placeholder location="classpath:application.yml"/>
</beans>
上一篇 下一篇

猜你喜欢

热点阅读