8 -- 深入使用Spring -- 2...5 Spring 3.0 新增的注解
Posted limeOracle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8 -- 深入使用Spring -- 2...5 Spring 3.0 新增的注解相关的知识,希望对你有一定的参考价值。
8.2.5 Spring 3.0 新增的注解
@DependsOn @Lazy
@DependsOn :用于强制初始化其他Bean。修饰Bean类或方法,可以指定一个字符串数组作为参数,每个数组元素对应一个强制初始化的Bean。
package edu.pri.lime._8_2_5.bean; import org.springframework.context.annotation.DependsOn; import org.springframework.stereotype.Component; @DependsOn({"steelAxe","lime"}) //指定在初始化chinese Bean之前,会强制初始化steelAxe、lime两个Bean @Component public class Chinese { }
@Lazy : 用于指定该Bean是否取消预初始化。
package edu.pri.lime._8_2_5.bean; import org.springframework.context.annotation.Lazy; import org.springframework.stereotype.Component; @Lazy(true) //修饰Spring Bean 类用于指定该Ben的预初始化行为,指定一个boolean型的value属性,该属性决定是否要预初始化该Bean @Component public class French { }
啦啦啦
以上是关于8 -- 深入使用Spring -- 2...5 Spring 3.0 新增的注解的主要内容,如果未能解决你的问题,请参考以下文章
8 -- 深入使用Spring -- 7...1 启动Spring 容器
8 -- 深入使用Spring -- 8...1 Spring提供的DAO支持
8 -- 深入使用Spring -- 4... Spring的AOP