`
shyboy0358
  • 浏览: 35601 次
文章分类
社区版块
存档分类
最新评论

spring获取ApplicationContext对象的方法

 
阅读更多
方法一:在初始化时保存ApplicationContext对象
代码:
ApplicationContext ac = new FileSystemXmlApplicationContext("applicationContext.xml");
ac.getBean("beanId");
说明:这种方式适用于采用Spring框架的独立应用程序,需要程序通过配置文件手工初始化Spring的情况。

方法二:通过Spring提供的工具类获取ApplicationContext对象
代码:
import org.springframework.web.context.support.WebApplicationContextUtils;
ApplicationContext ac1 = WebApplicationContextUtils.getRequiredWebApplicationContext(ServletContext sc);
ApplicationContext ac2 = WebApplicationContextUtils.getWebApplicationContext(ServletContext sc);
ac1.getBean("beanId");
ac2.getBean("beanId");
说明:
这种方式适合于采用Spring框架的B/S系统,通过ServletContext对象获取ApplicationContext对象,然后在通过它获取需要的类实例。

分享到:
评论

相关推荐

    Spring获取ApplicationContext对象工具类的实现方法

    本文将详细介绍Spring中获取ApplicationContext对象的工具类实现方法。 在Spring中,典型的获取ApplicationContext对象的方式是使用ApplicationContext接口的一个实现类,如ClassPathXmlApplicationContext。这是一...

    Spring获取webapplicationcontext,applicationcontext几种方法详解

    方法二:通过 Spring 提供的工具类获取 ApplicationContext 对象 在 B/S 系统中,通过 ServletContext 对象可以获取 WebApplicationContext 对象,然后通过它获取需要的类实例: `import org.springframework.web....

    Spring中ApplicationContext加载机制

    配置完成之后,即可通过 WebApplicationContextUtils.getWebApplicationContext 方法在 Web 应用中获取 ApplicationContext 引用。例如: ```java ApplicationContext ctx = WebApplicationContextUtils.get...

    spring中通过ApplicationContext getBean获取注入对象的方法实例

    本文将详细介绍如何在Spring中通过`ApplicationContext`的`getBean`方法获取注入对象,并通过实例来展示其使用。 首先,我们来看`ApplicationContextAware`接口,它是Spring提供的一个回调接口。当Spring容器创建了...

    SpringBoot获取ApplicationContext的3种方式

    在SpringBoot中,获取ApplicationContext是非常重要的,因为ApplicationContext是Spring中的核心容器,提供了许多有用的功能,如获取容器中的各种bean组件、注册监听事件、加载资源文件等。下面,我们将详细介绍获取...

    三、Spring源码分析——ApplicationContext

    当某个事件发生时,ApplicationContext会调用所有已注册的ApplicationListener对象的onApplicationEvent方法,使得组件之间可以通过事件进行通信,而无需直接引用彼此。 5. **国际化与本地化**: ...

    Java中Spring获取bean方法小结

    这里我们将详细探讨如何在Java中通过Spring获取配置的bean。 1. **BeanFactory与ApplicationContext** - **BeanFactory** 是Spring中最基础的IoC容器,负责管理和实例化Bean。它允许开发者定义Bean的生命周期和...

    几种spring获取bean的方法.txt

    ### 几种Spring获取Bean的方法 #### 1. 通过`WebApplicationContext`获取Bean 在Web环境下,Spring提供了`WebApplicationContext`接口,它是`ApplicationContext`的子接口,专门用于Web应用。可以通过`...

    获得spring里注册Bean的四种方法

    获取 Spring 里注册的 Bean 对象可以使用四种方法:继承 BaseDispatchAction、实现 BeanFactoryAware、使用 ApplicationContext、使用 @Autowired。每种方法都有其特点和应用场景,开发者可以根据实际情况选择合适的...

    普通对象使用spring容器中的对象的实现方法

    这个接口提供了获取ApplicationContext对象的方法,从而可以使用ApplicationContext对象来获取spring容器中的对象。 在实现方法中,我们首先需要创建一个SpringBeanUtil类,这个类实现了ApplicationContextAware...

    获取Spring容器

    ### 获取Spring容器的...通过以上介绍,我们可以了解到如何在Spring应用中通过编程的方式手动获取Spring容器中的对象。这种方式为开发者提供了更大的灵活性,但也需要谨慎使用,以避免引入不必要的复杂性和性能问题。

    利用Spring Context上下文创建自定义对象

    1. **定义Bean**:在Spring配置文件(通常是`applicationContext.xml`)中,我们需要定义我们的自定义对象,也就是bean。例如,假设我们有一个名为`MyCustomObject`的类,我们可以这样定义: ```xml <!-- 可以...

    Spring在代码中获取bean的几种方式详解

    方法二:通过Spring提供的工具类获取ApplicationContext对象 在基于Web的应用程序中,我们可以通过Spring提供的工具类获取ApplicationContext对象,然后获取Bean实例。例如: ``` ServletContext sc = ...; ...

    Spring Boot中Bean定义方调用方式解析

    System.out.println("========ApplicationContext 配置成功,在普通类可以通过调用 SpringUtils.getAppContext() 获取 applicationContext 对象,applicationContext=" + SpringUtil.applicationContext + "========...

    Web项目中获取SpringBean与在非Spring组件中获取SpringBean.pdf

    这样,我们可以在`SpringUtil`类中存储这个ApplicationContext的实例,然后通过静态方法`getObject`来获取任何需要的Bean。配置这个工具类为Spring的一个Bean,如下所示: ```xml <bean id="springUtil" class="org...

    jsp中调用dao的getHibernateTemplate()时,报空指针

    解决这个问题的方法是,从 Spring 配置文件中获取 ApplicationContext 对象,然后从中获取 DAO 对象。下面是一个示例代码: ```java ApplicationContext ac = new ClassPathXmlApplicationContext(...

    线程中获取spring 注解bean

    线程中的操作往往涉及到多线程环境下的资源共享和管理,因此,如何在线程中正确地获取并使用Spring通过注解注入的对象,是一个常见的问题。本文将详细探讨这个主题。 首先,Spring的注解主要分为三类:配置注解(如...

    第一章 Spring4 简介及获取Bean

    1. **通过Bean的ID**:使用`ApplicationContext`的`getBean()`方法,传入Bean的ID来获取实例。 2. **自动装配(Autowired)**:使用`@Autowired`注解,Spring会自动匹配类型匹配的Bean并注入。 3. **构造函数注入**...

    特殊情况(ActionForm,Servlet, Filter, Listener)下Spring如何注入对象

    2. **Filter**: 同样,可以在Filter的init()方法中获取ApplicationContext,或者通过ServletContextAware接口,将Spring上下文注册到ServletContext,然后在doFilter()方法中使用。 3. **Listener**: 在监听器的...

    Spring选择题(含答案).doc

    getter 方法:通过 getter 方法来获取依赖对象。 B. setter 方法:通过 setter 方法来注入依赖对象,例如,在 DeptService 中使用 setter 方法来注入 DeptDAO 对象。 C. 自定义赋值方法:通过自定义赋值方法来...

Global site tag (gtag.js) - Google Analytics