`
ytuwlg
  • 浏览: 92761 次
  • 性别: Icon_minigender_1
  • 来自: 威海
社区版块
存档分类
最新评论

spring: application context vs bean factory

    博客分类:
  • java
阅读更多

      bean factory to read the bean definitions from the Resource. But the bean factory doesn’t instantiate the beans just yet. Beans are “lazily” loaded into bean factories, meaning that while the bean factory will immediately load the bean definitions (the description of beans and their properties),

the beans themselves will not be instantiated until they are needed.


     When getBean() is called, the factory will instantiate the bean and set the bean’s properties using DI. Thus begins the life of a bean within the Spring container.


     A bean factory is fine for simple applications, but to take advantage of the full power of the Spring Framework, you’ll probably want to load your application beans using Spring’s more advanced container: the application context.


    On the surface, an ApplicationContext is much the same as a BeanFactory. Both load bean definitions, wire beans together, and dispense beans upon request. But an ApplicationContext offers much more:

 

      ■ Application contexts provide a means for resolving text messages, including support for internationalization (I18N) of those messages.


      ■ Application contexts provide a generic way to load file resources, such as images.


      ■ Application contexts can publish events to beans that are registered as listeners.


Because of the additional functionality it provides, an ApplicationContext is preferred over a BeanFactory in nearly all applications. The only times you might consider using a BeanFactory are in circumstances where resources are scarce, such as a mobile device. We will be using an ApplicationContext

    

     Aside from the additional functionality offered by application contexts,another big difference between an application context and a bean factory is how singleton beans are loaded. A bean factory lazily loads all beans, deferring bean creation until the getBean() method is called. An application context is a bit smarter and preloads all singleton beans upon context startup. By preloading singleton beans, you ensure that they will be ready to use when needed—your application won’t have to wait for them to be created.

分享到:
评论

相关推荐

    testSpring

    信息: Bean factory for application context [org.springframework.context.support.ClassPathXmlApplicationContext@c1f10e]: org.springframework.beans.factory.support.DefaultListableBeanFactory@15e234c ...

    Spring 应用上下文获取 Bean 的常用姿势实例总结

    Spring 应用上下文获取 Bean 的常用姿势实例总结 Spring 应用上下文获取 Bean 是一个常见的操作,在 Spring 框架中获取 Bean 对象是非常重要的。本文将总结 Spring 应用上下文获取 Bean 的常用姿势实例,并对其...

    spring 4.2.3所有jar包和依赖

    1. **Spring Core Container**:这是Spring框架的基础,包括Bean Factory和Application Context。Bean Factory负责创建、配置和管理对象,而Application Context则扩展了Bean Factory,提供了更多的企业级服务。 2....

    SpringSource CoreSpring认证考试题库.docx

    解释:在 Spring 框架中,可以使用 factory-method 属性在 XML 配置文件中创建 LegacySingleton Bean。 第 3 题 题目:Which of the following scenarios requires you to instantiate an ApplicationContext using...

    Spring项目application.xml配置文件加解密

    在Spring项目中,`application.xml`配置文件是核心配置组件,它包含了应用的bean定义、数据源、事务管理等重要信息。为了保护敏感信息,如数据库连接字符串、API密钥等,我们需要对这些配置进行加密。本文将详细介绍...

    SpringBoot 获取spring bean方式.rar

    在Spring Boot应用中,管理Bean是核心特性之一。Spring框架为我们提供了多种获取Bean的方法,这些方法可以帮助开发者在不同场景下灵活地使用Bean。本篇将详细介绍Spring Boot中获取Bean的几种常见方式。 首先,让...

    spring-spring-framework-4.3.24.RELEASE.zip

    5. **Bean的生命周期**:Spring允许开发者定义bean的初始化和销毁方法,以及自定义的生命周期策略。在源码中,`org.springframework.beans.factory.config`包包含了许多关于生命周期的接口和类,如InitializingBean...

    spring02-4

    总结来说,Spring的属性注解使得我们可以方便地管理bean的依赖关系和属性,而无需手动创建和设置bean的属性。通过`@Autowired`、`@Value`、`@Qualifier`和`@Resource`,我们可以灵活地控制bean的生命周期和行为,...

    Spring boot将配置属性注入到bean类中

    在Spring Boot中,属性注入是核心特性之一,它使得我们可以方便地将配置文件中的参数值注入到Bean类的属性中,从而实现灵活的配置管理。本文将详细讲解如何利用`@ConfigurationProperties`注解以及与`@...

    SPRING面试宝典

    Bean自动装配是指Spring容器根据特定规则自动将Bean实例注入到依赖它们的其他Bean中的过程。这种方式可以简化配置。 **3.13 解释不同的自动装配模式** Spring框架支持以下几种自动装配模式: - **no**:默认模式...

    Spring面试题详细讲解

    Spring Context:提供框架式的 Bean 访问方式,以及企业级功能(JNDI、定时任务等);Spring AOP:AOP 服务;Spring DAO:对 JDBC 的抽象,简化了数据访问异常的处理;Spring ORM:对现有的 ORM 框架的支持;Spring ...

    Spring4整合Jersey2.9

    4. **创建Jersey Application子类**:在`MyApplication`类中,你需要注册Spring的ContextResolver,以便Jersey能从Spring容器中查找bean: ```java public class MyApplication extends ResourceConfig { public ...

    详解Spring Boot 使用Java代码创建Bean并注册到Spring中

    3. `ApplicationListener`: 实现这个接口可以在Spring所有XML或元注解的Bean创建完成后,监听特定事件,执行一些后续操作。 下面是一个简单的例子,展示如何通过Java代码创建Bean并注册到Spring管理: 1. 定义接口...

    JSF和Spring集成.doc

    - `findBean(String beanName)` 方法用于从 Spring 中查找 bean,该方法通过当前 `FacesContext` 获取 `ServletContext`,进而获取 `ApplicationContext`,最终调用 `getBean` 方法获取指定名称的 bean。...

    Spring Boot技术知识点:如何读取不同路径里的applicationContext.xml配置文件2

    首先,了解Spring Boot默认的启动机制,它通过`@SpringBootApplication`注解来扫描和初始化应用。这个注解包含了`@EnableAutoConfiguration`和`@ComponentScan`,使得Spring Boot能够自动配置并发现应用组件。但是,...

    Java-Spring-WebService最基础的配置示例

    4. 配置Spring:在Spring的配置文件(如application.yml或application.properties)中,配置CXF的端点信息: ```yaml cxf: servlet: context-path: /services ``` 这会将Web服务部署到`...

    spring applicationContext 配置文件

    <bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean" p:dataSource-ref="dataSourceProxy"> <value>classpath:SqlMapConfig.xml</value> </property> </bean...

    spring jar包

    1. **spring-beans.jar**:包含Bean工厂和依赖注入的相关类,如`org.springframework.beans.factory`包下的BeanFactory接口和实现,以及`org.springframework.beans`包下的各种Bean处理工具类。 2. **spring-core....

    spring源码可导入eclipse版本 第四部分

    在源码中,你可以查看`org.springframework.beans.factory`和`org.springframework.context`包下的类,如`BeanFactory`和`ApplicationContext`,了解如何配置和管理bean。 2. **AOP(面向切面编程)**:Spring的AOP...

Global site tag (gtag.js) - Google Analytics