Fork me on GitHub

JSP Service

Turbine supports the use of JSP internally through a Service which provides JSP related Modules with access to the JSP engine directly. We have another document which gives a howto on configuration of Turbine to use JSP.

While Turbine supports the use of many templating systems, we definitely have our favorite system to use and recommend and that is Velocity.

Configuration

# -------------------------------------------------------------------
#
#  S E R V I C E S
#
# -------------------------------------------------------------------
# Classes for Turbine Services should be defined here.
# Format: services.[name].classname=[implementing class]
#
# To specify properties of a service use the following syntax:
# service.[name].[property]=[value]

services.JspService.classname=org.apache.turbine.services.jsp.TurbineJspService
.
.
.
# -------------------------------------------------------------------
#
#  J S P  S E R V I C E
#
# -------------------------------------------------------------------

services.JspService.template.extension=jsp
services.JspService.default.page = JspPage
services.JspService.default.screen=BaseJspScreen
services.JspService.default.layout = JspLayout
services.JspService.default.navigation=BaseJspNavigation
services.JspService.default.error.screen = JspErrorScreen
services.JspService.default.layout.template = /Default.jsp

services.JspService.templates = /templates/app
services.JspService.buffer.size = 8192

Usage

Please refer to the org.apache.turbine.services.jsp classes for details on how to use this service.