public abstract class JavaPage extends Page implements HttpJspPage
_caucho_log, _contentType| Constructor and Description |
|---|
JavaPage() |
| Modifier and Type | Method and Description |
|---|---|
abstract void |
_jspService(HttpServletRequest request,
HttpServletResponse response)
The main service method for a JSP page.
|
static void |
addDepend(java.util.ArrayList list,
PersistentDependency depend)
Static method to avoid compilation issues.
|
void |
destroy()
Called when the servlet shuts down.
|
java.lang.String |
getServletInfo()
Returns an information string about the servlet.
|
void |
init(ServletConfig config)
Initialize the servlet.
|
void |
jspDestroy()
Called when closing the JSP page, after all requests.
|
void |
jspInit()
Called before the first request for a JSP page.
|
void |
service(ServletRequest request,
ServletResponse response)
Service a request.
|
_caucho_addCacheDepend, _caucho_addDepend, _caucho_addDepend, _caucho_addDepend, _caucho_addDepend, _caucho_free, _caucho_getApplication, _caucho_getDependList, _caucho_getFunctionMap, _caucho_init, _caucho_isModified, _caucho_lastModified, _caucho_setAlwaysModified, _caucho_setCacheable, _caucho_setContentType, _caucho_setModified, _caucho_setNeverModified, _caucho_use, calculateLastModified, caucho_init, getInitParameter, getInitParameterNames, getLastModified, getServletConfig, getServletContext, getServletName, init, isDead, isInit, log, log, pageservice, setDead, startRecompilingclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetServletConfigpublic void init(ServletConfig config) throws ServletException
Pageinit in interface Servletinit in class Pageconfig - information from the configuration file.ServletExceptionpublic void jspInit()
JspPagepublic void service(ServletRequest request, ServletResponse response) throws ServletException, java.io.IOException
Servletservice simultaneously. Normally,
req and res will actually be
HttpServletRequest and HttpServletResponse
classes.service in interface Servletrequest - request information. Normally servlets will cast this
to HttpServletRequestresponse - response information. Normally servlets will cast this
to HttpServletRequestServletExceptionjava.io.IOExceptionpublic abstract void _jspService(HttpServletRequest request, HttpServletResponse response) throws ServletException, java.io.IOException
HttpJspPage_jspService in interface HttpJspPagerequest - the servlet request.response - the servlet response.ServletExceptionjava.io.IOExceptionpublic java.lang.String getServletInfo()
ServletgetServletInfo in interface ServletgetServletInfo in class Pagepublic static void addDepend(java.util.ArrayList list,
PersistentDependency depend)
public void destroy()
Servletpublic void jspDestroy()
JspPagejspDestroy in interface JspPage