📄 dispatchaction.java
字号:
/* * DispatchAction.java * * Created on 2006年6月21日, 下午5:24 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package enova.web.struts.action;import javax.servlet.http.*;import org.apache.struts.action.*;import enova.util.Const;/** * * @author vlinux */public class DispatchAction extends org.apache.struts.actions.DispatchAction { public DispatchAction() { super(); } public boolean verifyRoot(javax.servlet.http.HttpServletRequest request){ if( request.getSession().getAttribute(Const.LOGIN_ROOT)==null ) return true; return false; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -