Spring的web应用启动加载数据字典方法

  在一个基于Spring的web项目中,当我们需要在应用启动时加载数据字典时,可写一个监听实现javax.servlet.ServletContextListener

实现其中的contextInitialized(ServletContextEvent sce) 方法完成,初始化的操作。代码示例如下

一、监听程序

import javax.servlet.ServletContextEvent;
 javax.servlet.ServletContextListener;

 org.springframework.context.ApplicationContext;
 org.springframework.web.context.support.WebApplicationContextUtils;

public class InitDicListener implements ServletContextListener {

    void contextInitialized(ServletContextEvent sce) {
        //spring 上下文
        ApplicationContext     appContext = WebApplicationContextUtils.getWebApplicationContext(sce.getServletContext());
        /*
        ServiceBean bean1=appContext.getBean("xxx");
        ...业务方法,加载数据字典等。
         */
    }
     contextDestroyed(ServletContextEvent sce) {
    }

}

二、配置文件中加入配置

在web.xml中加入  监听配置, 但要写在Spring配置的下面,这样我们自定义的监听会在Spring监听之后启动,这个时候在我们自定义的监听程序中能够得到Spring的上下文。

因为,当web.xml中有多个<listener>配置时,排在前面的先启动

    <!-- Spring 框架   -->
    <listener>
        listener-class>org.springframework.web.context.ContextLoaderListener</>
     加载数据字典  在Spring配置的下面>msdemo.listener.InitDicListener>

三、数据字典使用

程序中  通过 ServletContext的getAttribute(name) 方法来获得 字典数据

jsp页面中  ${name} 来使用。

相关文章

这篇文章主要介绍了spring的事务传播属性REQUIRED_NESTED的原...
今天小编给大家分享的是一文解析spring中事务的传播机制,相...
这篇文章主要介绍了SpringCloudAlibaba和SpringCloud有什么区...
本篇文章和大家了解一下SpringCloud整合XXL-Job的几个步骤。...
本篇文章和大家了解一下Spring延迟初始化会遇到什么问题。有...
这篇文章主要介绍了怎么使用Spring提供的不同缓存注解实现缓...