最近,在一个原有框架上做二次开发。 系统要兼容MysqL和oracle。 通过监听servletContext 来获取标识。
可发现,使用ServletActionContext.getServletContext() ;获得的servletContext 一直为空! 顿感困惑,通过前台jsp 一看,原来使用的dwr。
无解,只有使用dwr API 来获取 servletContext
————————————————————————————————————————————————————————
org.directwebremoting.WebContext wc = org.directwebremoting.WebContextFactory.get();
javax.servlet.http.HttpServletRequest request = wc.getHttpServletRequest();
javax.servlet.http.HttpServletResponse response = wc.getHttpServletResponse();
javax.servlet.ServletContext context = wc.getServletContext(); javax.servlet.ServletConfig config = wc.getServletConfig(); javax.servlet.http.HttpSession session = wc.getSession();