📄 turbinevelocityservice.html
字号:
<PRE>public void <B>init</B>(javax.servlet.ServletConfig config) throws <A HREF="../../../../../org/apache/turbine/services/InitializationException.html">InitializationException</A></PRE><DL><DD>Inits the service using servlet parameters to obtain path to the configuration file.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/TurbineBaseService.html#init(javax.servlet.ServletConfig)">init</A></CODE> in class <CODE><A HREF="../../../../../org/apache/turbine/services/TurbineBaseService.html">TurbineBaseService</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>config</CODE> - The ServletConfiguration from Turbine<DT><B>Throws:</B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/InitializationException.html">InitializationException</A></CODE> - Something went wrong when starting up.</DL></DD></DL><HR><A NAME="getContext()"><!-- --></A><H3>getContext</H3><PRE>public org.apache.velocity.context.Context <B>getContext</B>()</PRE><DL><DD>Create a Context object that also contains the globalContext.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html#getContext()">getContext</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html">VelocityService</A></CODE></DL></DD><DD><DL><DT><B>Returns:</B><DD>A Context object.</DL></DD></DL><HR><A NAME="getContext(org.apache.turbine.util.RunData)"><!-- --></A><H3>getContext</H3><PRE>public org.apache.velocity.context.Context <B>getContext</B>(<A HREF="../../../../../org/apache/turbine/util/RunData.html">RunData</A> data)</PRE><DL><DD>Create a Context from the RunData object. Adds a pointer to the RunData object to the WC so that RunData is available in the templates.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html#getContext(org.apache.turbine.util.RunData)">getContext</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html">VelocityService</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>data</CODE> - The Turbine RunData object.<DT><B>Returns:</B><DD>A clone of the WebContext needed by Velocity.</DL></DD></DL><HR><A NAME="handleRequest(org.apache.velocity.context.Context, java.lang.String)"><!-- --></A><H3>handleRequest</H3><PRE>public java.lang.String <B>handleRequest</B>(org.apache.velocity.context.Context context, java.lang.String filename) throws <A HREF="../../../../../org/apache/turbine/util/TurbineException.html">TurbineException</A></PRE><DL><DD>Process the request and fill in the template with the values you set in the Context.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html#handleRequest(org.apache.velocity.context.Context, java.lang.String)">handleRequest</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html">VelocityService</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>context</CODE> - The populated context.<DD><CODE>filename</CODE> - The file name of the template.<DT><B>Returns:</B><DD>The process template as a String.<DT><B>Throws:</B><DD><CODE><A HREF="../../../../../org/apache/turbine/util/TurbineException.html">TurbineException</A></CODE> - Any exception trown while processing will be wrapped into a TurbineException and rethrown.</DL></DD></DL><HR><A NAME="handleRequest(org.apache.velocity.context.Context, java.lang.String, java.io.OutputStream)"><!-- --></A><H3>handleRequest</H3><PRE>public void <B>handleRequest</B>(org.apache.velocity.context.Context context, java.lang.String filename, java.io.OutputStream output) throws <A HREF="../../../../../org/apache/turbine/util/TurbineException.html">TurbineException</A></PRE><DL><DD>Process the request and fill in the template with the values you set in the Context.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html#handleRequest(org.apache.velocity.context.Context, java.lang.String, java.io.OutputStream)">handleRequest</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html">VelocityService</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>context</CODE> - A Context.<DD><CODE>filename</CODE> - A String with the filename of the template.<DD><CODE>out</CODE> - A OutputStream where we will write the process template as a String.<DT><B>Throws:</B><DD><CODE><A HREF="../../../../../org/apache/turbine/util/TurbineException.html">TurbineException</A></CODE> - Any exception trown while processing will be wrapped into a TurbineException and rethrown.</DL></DD></DL><HR><A NAME="handleRequest(org.apache.velocity.context.Context, java.lang.String, java.io.Writer)"><!-- --></A><H3>handleRequest</H3><PRE>public void <B>handleRequest</B>(org.apache.velocity.context.Context context, java.lang.String filename, java.io.Writer writer) throws <A HREF="../../../../../org/apache/turbine/util/TurbineException.html">TurbineException</A></PRE><DL><DD>Process the request and fill in the template with the values you set in the Context.<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html#handleRequest(org.apache.velocity.context.Context, java.lang.String, java.io.Writer)">handleRequest</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html">VelocityService</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>context</CODE> - A Context.<DD><CODE>filename</CODE> - A String with the filename of the template.<DD><CODE>writer</CODE> - A Writer where we will write the process template as a String.<DT><B>Throws:</B><DD><CODE><A HREF="../../../../../org/apache/turbine/util/TurbineException.html">TurbineException</A></CODE> - Any exception trown while processing will be wrapped into a TurbineException and rethrown.</DL></DD></DL><HR><A NAME="templateExists(java.lang.String)"><!-- --></A><H3>templateExists</H3><PRE>public boolean <B>templateExists</B>(java.lang.String template)</PRE><DL><DD>Find out if a given template exists. Velocity will do its own searching to determine whether a template exists or not.<DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/template/BaseTemplateEngineService.html#templateExists(java.lang.String)">templateExists</A></CODE> in class <CODE><A HREF="../../../../../org/apache/turbine/services/template/BaseTemplateEngineService.html">BaseTemplateEngineService</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>String</CODE> - template to search for<DT><B>Returns:</B><DD>boolean</DL></DD></DL><HR><A NAME="requestFinished(org.apache.velocity.context.Context)"><!-- --></A><H3>requestFinished</H3><PRE>public void <B>requestFinished</B>(org.apache.velocity.context.Context context)</PRE><DL><DD>Performs post-request actions (releases context tools back to the object pool).<DD><DL><DT><B>Specified by: </B><DD><CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html#requestFinished(org.apache.velocity.context.Context)">requestFinished</A></CODE> in interface <CODE><A HREF="../../../../../org/apache/turbine/services/velocity/VelocityService.html">VelocityService</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>context</CODE> - a Velocity Context</DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ========== START OF NAVBAR ========== --><A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0"><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3"> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TurbineVelocityService.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../org/apache/turbine/services/velocity/TurbineVelocity.html"><B>PREV CLASS</B></A> NEXT CLASS</FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html" TARGET="_top"><B>FRAMES</B></A> <A HREF="TurbineVelocityService.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: INNER | <A HREF="#fields_inherited_from_class_org.apache.turbine.services.BaseService">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><!-- =========== END OF NAVBAR =========== --><HR>Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -