`

ServletContextListener的实现类中如何获取Spring配置中的bean

阅读更多

示例代码如下:

 

public class Test implements ServletContextListener {

  public IMessageService messageService;

  public void setMessageService(IMessageService messageService) {
      this.messageService = messageService;
  }

  public void contextInitialized(ServletContextEvent sce) {
      ApplicationContext ac = null;

      ac = WebApplicationContextUtils.getRequiredWebApplicationContext(sce.getServletContext ());

      setMessageService ((IMessageService) ac.getBean ("MessageServiceImpl"));
  }

}

分享到:
评论

相关推荐

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

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

    Spring动态加载配置文件

    在Spring框架中,动态加载配置文件是一项重要的功能,它使得开发者在开发过程中无需重启应用就能实时更新配置,极大地提高了开发效率。热部署方案是这一功能的具体应用,它允许我们在不中断服务的情况下,对应用程序...

    监听器获取Spring配置文件的方法

    在开发Java Web应用程序时,尤其是基于Spring框架的项目,我们经常需要在项目启动时执行一些初始化操作,例如从配置文件中获取并初始化必要的bean。监听器在此场景中扮演着重要角色,它们会在Web应用程序启动时自动...

    Spring源码学习七:web应用自动装配Spring配置文件1

    `ContextLoaderListener`的`contextInitialized`方法主要负责调用`initWebApplicationContext`方法,该方法在`ContextLoader`类中实现,其作用是初始化Web环境下的Spring应用上下文(ApplicationContext)。...

    SpringMVC中ervletContextListener的使用

    在Spring MVC中,`ServletContextListener`的一个常见用途是创建和配置ApplicationContext,这是Spring的核心组件,用于管理bean和依赖注入。通过在`contextInitialized`方法中初始化ApplicationContext,我们可以...

    spring2与quartz在Web整合

    3. **整合过程**:整合 Spring 2 和 Quartz 需要在 Spring 配置文件中声明 Job 和 Trigger 的 Bean,并指定它们的关联。Spring 可以通过其自身的 JobFactory 来创建 Job 实例,使得 Job 可以利用 Spring 的 DI 功能...

    Spring与Web环境集成1

    Spring与Web环境集成是将Spring框架整合到Web应用程序中的过程,以便在Web环境中利用Spring的强大功能,如依赖注入和AOP。在这个过程中,主要涉及的关键点是ApplicationContext应用上下文的获取和管理。 1. **...

    SSH笔记-web应用下使用Spring

    在这个笔记中,我们将深入探讨如何在Web应用环境下使用Spring框架,特别是通过两种不同的方法:配置监听器类和调用HttpServlet类,以及配置ContextLoaderListener。 首先,Spring框架在Web应用中的主要作用是提供...

    Spring-5.1.5源码

    `ContextLoaderListener`是一个实现了`javax.servlet.ServletContextListener`接口的类,它的主要职责是在Web应用启动时初始化Spring应用上下文,并在应用关闭时清理资源。这个过程涉及以下几个关键知识点: 1. **...

    Quartz2.2.3+Spring4.3.14整合demo

    5. 初始化 Quartz:在 `web.xml` 中添加一个 ServletContextListener,如 `org.springframework.scheduling.quartz.SchedulerFactoryBean`,在应用启动时初始化 Quartz Scheduler,并加载 Spring 配置中的 Job 和 ...

    Spring与Web环境集成.pdf

    为了解决这些弊端,我们可以使用ServletContextListener监听Web应用的启动,在Web应用启动时加载Spring的配置文件,创建应用上下文对象ApplicationContext,并将其存储到ServletContext域中。这样,我们就可以在任意...

    Spring在容器在启动的时候发生了什么

    `ContextLoaderListener`是Spring提供的一种Servlet监听器,它实现了`ServletContextListener`接口。当Web应用启动时,Servlet容器会调用`ContextLoaderListener`的`contextInitialized`方法。在这个方法中,`...

    spring 与hibernate的集成

    `ContextLoaderListener`是Spring的核心组件,它实现了`ServletContextListener`接口,当Web服务器启动时,会调用其`contextInitialized`方法,从而加载`contextConfigLocation`参数所指定的配置文件。如果想要...

    Spring的监听器ContextLoaderListener的作用

    它实现了 ServletContextListener 接口,在 web.xml 文件中配置这个监听器,启动容器时,就会默认执行它实现的方法。 ContextLoaderListener 的作用可以分为三个方面: 首先,ContextLoaderListener 会关联 ...

    spring和java定时器

    在提供的Java代码片段中,`SPListener`实现了`ServletContextListener`接口,这意味着它会在Web应用启动时初始化,并在Web应用停止时销毁。在这个监听器中,创建了一个`Timer`实例,计划在每天特定时间(15:16:00)...

    精品专题(2021-2022年收藏)spring项目中监听器作用.doc

    本文将深入探讨Spring框架中的监听器,特别是`ContextLoaderListener`的作用及其配置。 `ContextLoaderListener`是Spring框架提供的一个核心监听器,主要用于初始化和销毁Spring的WebApplicationContext。它是...

    Spring3.0定时任务简单实例web工程

    首先,我们要了解Spring 3.0中的定时任务是通过Spring的`Task`模块来实现的,这个模块提供了`org.springframework.scheduling`包下的各种接口和类,如`TaskExecutor`、`TaskScheduler`以及`@Scheduled`注解。...

    详解spring注解配置启动过程

    在`createRootApplicationContext()`方法中,Spring会根据我们指定的配置类(`getRootConfigClasses()`返回的类)创建一个新的`AnnotationConfigWebApplicationContext`实例,并注册所有的配置类作为bean。...

    shiro+spring集成

    - **启动 Shiro**:在 Spring 的 ApplicationListener 或 ServletContextListener 中初始化 Shiro。 5. **关键组件** - **SecurityManager**:Shiro 的核心组件,负责整个系统的安全管理。 - **Realm**:Shiro ...

Global site tag (gtag.js) - Google Analytics