org.webframe.web.springmvc.view.jsp.JspCheckView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wf-web-springmvc Show documentation
Show all versions of wf-web-springmvc Show documentation
Java Web Frame: wf-web-springmvc
/*
* wf-web-springmvc
* Created on 2012-1-30-下午01:50:11
*/
package org.webframe.web.springmvc.view.jsp;
import java.util.Locale;
import javax.servlet.ServletContext;
import org.springframework.web.servlet.view.JstlView;
/**
* 先检查Jsp物理文件是否存在
*
* @author 黄国庆
* @since 2012-1-30 下午01:50:11
* @version
*/
public class JspCheckView extends JstlView {
private ServletContext sc = null;
@Override
public boolean checkResource(Locale locale) throws Exception {
return sc == null ? false : sc.getResource(getUrl()) != null;
}
@Override
protected void initServletContext(ServletContext servletContext) {
super.initServletContext(servletContext);
sc = servletContext;
}
}