org.webframe.web.springmvc.view.jstl.ModuleJstlView 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
package org.webframe.web.springmvc.view.jstl;
import java.io.File;
import java.util.Locale;
import javax.servlet.ServletContext;
import org.springframework.web.servlet.view.JstlView;
/**
* @author 黄国庆
* @version $Id: codetemplates.xml,v 1.1 2009/09/07 08:48:12 Exp $ Create: 2011-6-28 下午08:48:46
*/
public class ModuleJstlView extends JstlView {
private String realPath = "";
@Override
public boolean checkResource(Locale locale) throws Exception {
return new File(realPath).exists();
}
@Override
protected void initServletContext(ServletContext servletContext) {
super.initServletContext(servletContext);
realPath = servletContext.getRealPath(getUrl());
}
}