在项目启动时 使用监听器加载所有字典表数据

1.首先在web.xml配置

 <listener>
        <listener-class>DataDictionaryListener</listener-class>
 </listener>

2.书写DataDictionaryListener类

public class DataDictionaryListener extends ContextLoader implements ServletContextListener{

    private ArrayList<String> codeArrayList = new ArrayList<String>();//数据字典Code列表

    @Override
    public void contextInitialized(ServletContextEvent sce) {
        //Spring上下文获取及Bean获取
        ApplicationContext applicationContext = WebApplicationContextUtils.getWebApplicationContext(sce.getServletContext());
        DataDictionaryService dataDictionaryService = (DataDictionaryService) applicationContext.getBean("dataDictionaryService");
        ServletContext servletContext = sce.getServletContext();

        //查询获取数据库所有数据字典Code列表
        try {
            codeArrayList = dataDictionaryService.getDataDictionaryCodeList();
        }catch (Exception e){
            System.out.println("============项目启动获取数据字典Code列表出错==================");
            e.printStackTrace();
        }

        //循环CodeList初始化数据字典数据之内存中
        try {
            for (String code : codeArrayList) {
                servletContext.setAttribute(code, dataDictionaryService.getDataDictionaryByStr(code));
            }
        }catch (Exception ex){
            System.out.println("============项目启动存储数据字典列表至内存出错==================");
            ex.printStackTrace();
        }
    }

    @Override
    public void contextDestroyed(ServletContextEvent sce) {
        closeWebApplicationContext(sce.getServletContext());
    }
}

 3.从内存中取出每个code对应的list集合dataDictionaryService方法

 WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext();
                ServletContext servletContext = webApplicationContext.getServletContext();
                arrayList = (ArrayList<DataDictionary>) servletContext.getAttribute(code);

  获取到该code对应的arrayList数据。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值