Avatar notebook default
12篇文章 · 2834字 · 1人关注
  • Spring 中的注解

    IoC 相关的注解 @Bean @ComponentScan @Scope @Lazy @Conditional @Import @PostCo...

  • Resize,w 360,h 240
    Aware接口

    Aware 接口是 Spring 框架开放调用组件能力的接口 使用 ApplicationContext 这样我们就可以使用 Applicati...

  • @Autowired 和 @Resource 注解

    Spring 利用依赖注入(DI), 为 Spring IoC 容器赋值。@Autowired 是 Spring 自己实现的一个注解@Quali...

  • @Value 和 @PropertySource 注解

    @Value 注解赋值 直接给成员变量赋值 Person 类 在 Person 类中,为 name 字段和 age 字段分别做了赋值操作配置类 ...

  • 初始化和销毁方法

    @Bean(initMethod="init", destoryMethod="destroy") 实现接口 InitializingBean ...

  • Bean的工厂创建方式

    使用工厂方式创建 Bean。PersonBeanFactory getObject : 获取对象getObjectType: 获取对象的类型is...

  • @Import 注解

    @Import 注解可以普通类导入到 IoC容器中。 想要让一个普通类接受 Spring 容器管理,有以下方法 使用 @Bean 注解 使用 @...

  • @Conditional 注解

    @Conditional 注解是进行条件判断的, 满足当前条件,就加载 bean,否则不加载。 @Conditional 的属性 value 传...

  • @Lazy 注解

    Spring IoC (ApplicationContext) 容器一般都会在启动的时候实例化所有单实例 bean 。如果我们想要 Spring...

文集作者