All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webframe.web.springmvc.view.jsp.JspCheckView Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
/*
 * 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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy