首页 > 代码库 > Spring Bean配置
Spring Bean配置
Spring 是什么
•Spring 为简化企业级应用开发而生. 使用 Spring 可以使简单的 JavaBean 实现以前只有 EJB 才能实现的功能.
•Spring 是一个 IOC(DI) 和 AOP 容器框架.
IOC 和 DI
•IOC(Inversion of Control):其思想是反转资源获取的方向. 传统的资源查找方式要求组件向容器发起请求查找资源. 作为回应, 容器适时的返回资源. 而应用了 IOC 之后, 则是容器主动地将资源推送给它所管理的组件, 组件所要做的仅是选择一种合适的方式来接受资源. 这种行为也被称为查找的被动形式
•DI(Dependency Injection) — IOC 的另一种表述方式:即组件以一些预先定义好的方式(例如: setter 方法)接受来自如容器的资源注入. 相对于 IOC 而言,这种表述更直接
Spring 容器
•在 Spring IOC 容器读取 Bean 配置创建 Bean 实例之前, 必须对它进行实例化. 只有在容器实例化后, 才可以从 IOC 容器里获取 Bean 实例并使用.
•Spring 提供了两种类型的 IOC 容器实现.
ApplicationContext
•ApplicationContext 的主要实现类:
•ConfigurableApplicationContext 扩展于 ApplicationContext,新增加两个主要方法:refresh() 和 close(), 让 ApplicationContext 具有启动、刷新和关闭上下文的能力
•ApplicationContext 在初始化上下文时就实例化所有单例的 Bean。
•WebApplicationContext 是专门为 WEB 应用而准备的,它允许从相对于 WEB 根目录的路径中完成初始化工作
从 IOC 容器中获取 Bean
依赖注入的方式
•Spring 支持 3 种依赖注入的方式
属性注入
构造方法注入
<!-- 若一个 bean 有多个构造器, 如何通过构造器来为 bean 的属性赋值 --> <!-- 可以根据 index 和 value 进行更加精确的定位. (了解) --> <bean id="car" class="com.atguigu.spring.helloworld.Car"> <constructor-arg value="http://www.mamicode.com/KUGA" index="1"></constructor-arg> <constructor-arg value="http://www.mamicode.com/ChangAnFord" index="0"></constructor-arg> <constructor-arg value="http://www.mamicode.com/250000" type="float"></constructor-arg> </bean>
字面值
引用其它 Bean
<!-- 配置 bean --> <bean id="dao5" class="com.atguigu.spring.ref.Dao"></bean> <bean id="service" class="com.atguigu.spring.ref.Service"> <!-- 通过 ref 属性值指定当前属性指向哪一个 bean! --> <property name="dao" ref="dao5"></property> </bean>
内部 Bean
<!-- 声明使用内部 bean --> <bean id="service2" class="com.atguigu.spring.ref.Service"> <property name="dao"> <!-- 内部 bean, 类似于匿名内部类对象. 不能被外部的 bean 来引用, 也没有必要设置 id 属性 --> <bean class="com.atguigu.spring.ref.Dao"> <property name="dataSource" value="http://www.mamicode.com/c3p0"></property> </bean> </property> </bean>
null 值和级联属性
集合属性
1 <!-- 装配集合属性 --> 2 <bean id="user" class="com.atguigu.spring.helloworld.User"> 3 <property name="userName" value="http://www.mamicode.com/Jack"></property> 4 <property name="cars"> 5 <!-- 使用 list 元素来装配集合属性 --> 6 <list> 7 <ref bean="car"/> 8 <ref bean="car2"/> 9 </list>10 </property>11 </bean>12 13 <!-- 声明集合类型的 bean -->14 <util:list id="cars">15 <ref bean="car"/>16 <ref bean="car2"/>17 </util:list>18 19 <bean id="user2" class="com.atguigu.spring.helloworld.User">20 <property name="userName" value="http://www.mamicode.com/Rose"></property>21 <!-- 引用外部声明的 list -->22 <property name="cars" ref="cars"></property>23 </bean>
使用 p 命名空间
<bean id="user3" class="com.atguigu.spring.helloworld.User" p:cars-ref="cars" p:userName="Titannic"></bean>
XML 配置里的 Bean 自动装配
<!-- 自动装配: 只声明 bean, 而把 bean 之间的关系交给 IOC 容器来完成 --> <!-- byType: 根据类型进行自动装配. 但要求 IOC 容器中只有一个类型对应的 bean, 若有多个则无法完成自动装配. byName: 若属性名和某一个 bean 的 id 名一致, 即可完成自动装配. 若没有 id 一致的, 则无法完成自动装配 -->
•自动装配的缺点
继承 Bean 配置
依赖 Bean 配置
Bean 的作用域
使用外部属性文件
1 <!-- 导入外部的资源文件 --> 2 <context:property-placeholder location="classpath:db.properties"/> 3 4 <!-- 配置数据源 --> 5 <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> 6 <property name="user" value="http://www.mamicode.com/${jdbc.user}"></property> 7 <property name="password" value="http://www.mamicode.com/${jdbc.password}"></property> 8 <property name="driverClass" value="http://www.mamicode.com/${jdbc.driverClass}"></property> 9 <property name="jdbcUrl" value="http://www.mamicode.com/${jdbc.jdbcUrl}"></property>10 11 <property name="initialPoolSize" value="http://www.mamicode.com/${jdbc.initPoolSize}"></property>12 <property name="maxPoolSize" value="http://www.mamicode.com/${jdbc.maxPoolSize}"></property>13 </bean>
Spring Bean配置