首页>计算机>软件水平考试>复习指导>正文
计算机软件水平考前辅导:构建支持Ajax的轻量级J2EE框架

www.zige365.com 2008-12-2 13:40:08 点击:发送给好友 和学友门交流一下 收藏到我的会员中心

        public void destroy() {
                // TODO Auto-generated method stub

        }
       
        protected final String getModuleConfigPrefix(){
                return this.moduleConfig.getPrefix();
        }
        protected final ActionServlet getActionServlet(){
                return this.actionServlet;
        }
       
        public String getServletContextAttributeNameForBuffalo(){
                return BUFFALO_CONTEXT_PREFIX;
        }
        public String getServletContextAttributeNameForSCP(){
                return SERVLET_CONTEXT_PREFIX+getModuleConfigPrefix();
        }

        public void init(ActionServlet as, ModuleConfig mc)
                        throws ServletException {
                // TODO Auto-generated method stub
                log.info("BuffaloPlugIn init begin ......");
                this.actionServlet = as;
                this.moduleConfig = mc;
                as.getServletContext().setAttribute  (getServletContextAttributeNameForBuffalo(),getServletContextAttributeNameForSCP());
                log.info("init  end ");
          }
  }

  把Buffalo中的SpringFactory和SpringUtil的获得WebApplicationContext的方式修改如下:
在SpringUtil中增加方法:
  /**
         * 获取WebApplicationContext
         * @param context
         * @return
         */
        public static WebApplicationContext getWebApplicationContext(ServletContext context){

本新闻共4页,当前在第2页  1  2  3  4  

我要投稿 新闻来源: 编辑: 作者:
相关新闻
计算机软件水平考前辅导难题精讲:题目(5)
计算机软件水平考前辅导难题精讲:题目(4)
计算机软件水平考前辅导难题精讲:题目(3)
计算机软件水平考前辅导难题精讲:题目(2)
计算机软件水平考前辅导难题精讲:题目(1)