标签:描述 subject shiro 元素 cat ima http support tld
标签库描述符(TLD)文件捆绑shiro-web.jar中META-INF/shiro.tld的文件
继承并重写了javax.servlet.jsp.tagext.TagSupport的doStartTag方法,根据传入的标签元素信息判断是否显示标签内的内容
public int onDoStartTag() throws JspException { // 判断用户是否已经认证通过 if (getSubject() != null && getSubject().isAuthenticated()) { if (log.isTraceEnabled()) { log.trace("Subject exists and is authenticated. Tag body will be evaluated."); } // 显示标签内的内容 return TagSupport.EVAL_BODY_INCLUDE; } else { if (log.isTraceEnabled()) { log.trace("Subject does not exist or is not authenticated. Tag body will not be evaluated."); } // 不显示标签内的内容 return TagSupport.SKIP_BODY; } }
标签:描述 subject shiro 元素 cat ima http support tld
原文地址:https://www.cnblogs.com/BINGJJFLY/p/9725115.html