Turbine is the main servlet for the entire system. It is
final
because you should
not ever need to subclass this servlet. If you need to perform initialization of a service, then you should implement the Services API and let your code be initialized by it. If you need to override something in the
doGet()
or
doPost()
methods, edit the TurbineResources.properties file and specify your own classes there.
Turbine servlet recognizes the following initialization parameters.
properties
the path to TurbineResources.properties file used by the default implementation of ResourceService
, relative to the application root. basedir
this parameter is used only if your application server does not support web applications, or the or does not support ServletContext.getRealPath(String)
method correctly. You can use this parameter to specify the directory within the server's filesystem, that is the base of your web application.
@author
Jon S. Stevens
@author
Brett McLaughlin
@author
Greg Ritter
@author
John D. McNally
@author
Frank Y. Kim
@author
Rafal Krzewski
@author
Jason van Zyl
@author
Sean Legassick
@author
Martin Poeschl
@author
Henning P. Schmiedehausen
@author
Quinton McCombs
@author
Eric Pugh
@version $Id: Turbine.java 264152 2005-08-29 14:50:22Z henning $