微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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} 来使用。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐