• ServletContextListener 启动SPRING加载数据到缓存的应用


     

    java 代码

    public class LoadTreeForXML implements ServletContextListener {
        public void contextInitialized(ServletContextEvent servletContextEvent) {
            ServletContext servletContext = servletContextEvent.getServletContext();
            ApplicationContext context = WebApplicationContextUtils.getWebApplicationContext(servletContext);

            //将数据放到缓存中。
            servletContext.setAttribute("allNotLeafNodeList", "AAAAAAAAAAAAAAAAAAA");
            servletContextEvent.getServletContext().removeAttribute("allNotLeafNodeList");
        }

        public void contextDestroyed(ServletContextEvent servletContextEvent) {
            System.out.println("关闭信息!");
        }

  • 相关阅读:
    买不到的数目
    逆波兰表达式
    颠倒的价牌
    排它平方数
    寒假作业
    搭积木
    网友年龄
    九宫重排
    格子刷油漆
    高僧斗法
  • 原文地址:https://www.cnblogs.com/exmyth/p/5345376.html
Copyright © 2020-2023  润新知