|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.jasper.servlet.JspServletWrapper
public class JspServletWrapper
The JSP engine (a.k.a Jasper). The servlet container is responsible for providing a URLClassLoader for the web application context Jasper is being used in. Jasper will try get the Tomcat ServletContext attribute for its ServletContext class loader, if that fails, it uses the parent class loader. In either case, it must be a URLClassLoader.
Constructor Summary | |
---|---|
JspServletWrapper(ServletConfig config,
Options options,
String jspUri,
JspRuntimeContext rctxt)
|
|
JspServletWrapper(ServletContext servletContext,
Options options,
String tagFilePath,
TagInfo tagInfo,
JspRuntimeContext rctxt,
JarResource tagJarResource)
|
Method Summary | |
---|---|
int |
decTripCount()
|
void |
destroy()
|
Map<String,Long> |
getDependants()
Get a list of files that the current page has source dependency on. |
JspCompilationContext |
getJspEngineContext()
|
String |
getJspUri()
|
long |
getLastModificationTest()
|
long |
getLastUsageTime()
|
Servlet |
getServlet()
|
ServletContext |
getServletContext()
|
FastRemovalDequeue.Entry |
getUnloadHandle()
|
protected JasperException |
handleJspException(Exception ex)
Attempts to construct a JasperException that contains helpful information about what went wrong. |
int |
incTripCount()
|
boolean |
isTagFile()
|
Class<?> |
loadTagFile()
Compile (if needed) and load a tag file |
Class<?> |
loadTagFilePrototype()
Compile and load a prototype for the Tag file. |
void |
service(HttpServletRequest request,
HttpServletResponse response,
boolean precompile)
|
void |
setCompilationException(JasperException je)
Sets the compilation exception for this JspServletWrapper. |
void |
setLastModificationTest(long lastModificationTest)
|
void |
setReload(boolean reload)
|
void |
setServletClassLastModifiedTime(long lastModified)
Sets the last-modified time of the servlet class file associated with this JspServletWrapper. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public JspServletWrapper(ServletConfig config, Options options, String jspUri, JspRuntimeContext rctxt)
public JspServletWrapper(ServletContext servletContext, Options options, String tagFilePath, TagInfo tagInfo, JspRuntimeContext rctxt, JarResource tagJarResource)
Method Detail |
---|
public JspCompilationContext getJspEngineContext()
public void setReload(boolean reload)
public Servlet getServlet() throws ServletException
ServletException
public ServletContext getServletContext()
public void setCompilationException(JasperException je)
je
- The compilation exceptionpublic void setServletClassLastModifiedTime(long lastModified)
lastModified
- Last-modified time of servlet classpublic Class<?> loadTagFile() throws JasperException
JasperException
public Class<?> loadTagFilePrototype() throws JasperException
JasperException
public Map<String,Long> getDependants()
public boolean isTagFile()
public int incTripCount()
public int decTripCount()
public String getJspUri()
public FastRemovalDequeue.Entry getUnloadHandle()
public void service(HttpServletRequest request, HttpServletResponse response, boolean precompile) throws ServletException, IOException, FileNotFoundException
ServletException
IOException
FileNotFoundException
public void destroy()
public long getLastModificationTest()
public void setLastModificationTest(long lastModificationTest)
lastModificationTest
- The lastModificationTest to set.public long getLastUsageTime()
protected JasperException handleJspException(Exception ex)
Attempts to construct a JasperException that contains helpful information about what went wrong. Uses the JSP compiler system to translate the line number in the generated servlet that originated the exception to a line number in the JSP. Then constructs an exception containing that information, and a snippet of the JSP to help debugging. Please see http://issues.apache.org/bugzilla/show_bug.cgi?id=37062 and http://www.tfenne.com/jasper/ for more details.
ex
- the exception that was the cause of the problem.
|
Apache Tomcat 7.0.28 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |