public class

XsltView

extends AbstractUrlBasedView
java.lang.Object
   ↳ org.springframework.context.support.ApplicationObjectSupport
     ↳ org.springframework.web.context.support.WebApplicationObjectSupport
       ↳ org.springframework.web.servlet.view.AbstractView
         ↳ org.springframework.web.servlet.view.AbstractUrlBasedView
           ↳ org.springframework.web.servlet.view.xslt.XsltView

Class Overview

XSLT-driven View that allows for response context to be rendered as the result of an XSLT transformation.

The XSLT Source object is supplied as a parameter in the model and then detected during response rendering. Users can either specify a specific entry in the model via the sourceKey property or have Spring locate the Source object. This class also provides basic conversion of objects into Source implementations. See here for more details.

All model parameters are passed to the XSLT Transformer as parameters. In addition the user can configure output properties to be passed to the Transformer.

Summary

[Expand]
Inherited Constants
From class org.springframework.web.servlet.view.AbstractView
[Expand]
Inherited Fields
From class org.springframework.context.support.ApplicationObjectSupport
From interface org.springframework.web.servlet.View
Public Constructors
XsltView()
Public Methods
void setCacheTemplates(boolean cacheTemplates)
Turn on/off the caching of the XSLT Templates instance.
void setErrorListener(ErrorListener errorListener)
Set an implementation of the ErrorListener interface for custom handling of transformation errors and warnings.
void setIndent(boolean indent)
Set whether the XSLT transformer may add additional whitespace when outputting the result tree.
void setOutputProperties(Properties outputProperties)
Set arbitrary transformer output properties to be applied to the stylesheet.
void setSourceKey(String sourceKey)
Set the name of the model attribute that represents the XSLT Source.
void setTransformerFactoryClass(Class transformerFactoryClass)
Specify the XSLT TransformerFactory class to use.
void setUriResolver(URIResolver uriResolver)
Set the URIResolver used in the transform.
Protected Methods
final void configureIndentation(Transformer transformer)
Configure the indentation settings for the supplied Transformer.
void configureResponse(Map<StringObject> model, HttpServletResponse response, Transformer transformer)
Configure the supplied HttpServletResponse.
void configureTransformer(Map<StringObject> model, HttpServletResponse response, Transformer transformer)
Configure the supplied Transformer instance.
Source convertSource(Object source)
Convert the supplied Object into an XSLT Source if the Object type is supported.
final void copyModelParameters(Map<StringObject> model, Transformer transformer)
Copy all entries from the supplied Map into the parameter set of the supplied Transformer.
final void copyOutputProperties(Transformer transformer)
Copy the configured output Properties, if any, into the output property set of the supplied Transformer.
Result createResult(HttpServletResponse response)
Create the XSLT Result used to render the result of the transformation.
Transformer createTransformer(Templates templates)
Create the Transformer instance used to prefer the XSLT transformation.
Class[] getSourceTypes()
Return the array of Classes that are supported when converting to an XSLT Source.
Source getStylesheetSource()
Get the XSLT Source for the XSLT template under the configured URL.
final TransformerFactory getTransformerFactory()
Return the TransformerFactory that this XsltView uses.
void initApplicationContext()
Initialize this XsltView's TransformerFactory.
Source locateSource(Map<StringObject> model)

Locate the Source object in the supplied model, converting objects as required.

TransformerFactory newTransformerFactory(Class transformerFactoryClass)
Instantiate a new TransformerFactory for this view.
void renderMergedOutputModel(Map<StringObject> model, HttpServletRequest request, HttpServletResponse response)
Subclasses must implement this method to actually render the view.
[Expand]
Inherited Methods
From class org.springframework.web.servlet.view.AbstractUrlBasedView
From class org.springframework.web.servlet.view.AbstractView
From class org.springframework.web.context.support.WebApplicationObjectSupport
From class org.springframework.context.support.ApplicationObjectSupport
From class java.lang.Object
From interface org.springframework.beans.factory.BeanNameAware
From interface org.springframework.beans.factory.InitializingBean
From interface org.springframework.context.ApplicationContextAware
From interface org.springframework.web.context.ServletContextAware
From interface org.springframework.web.servlet.View

Public Constructors

public XsltView ()

Public Methods

public void setCacheTemplates (boolean cacheTemplates)

Turn on/off the caching of the XSLT Templates instance.

The default value is "true". Only set this to "false" in development, where caching does not seriously impact performance.

public void setErrorListener (ErrorListener errorListener)

Set an implementation of the ErrorListener interface for custom handling of transformation errors and warnings.

If not set, a default SimpleTransformErrorListener is used that simply logs warnings using the logger instance of the view class, and rethrows errors to discontinue the XML transformation.

public void setIndent (boolean indent)

Set whether the XSLT transformer may add additional whitespace when outputting the result tree.

Default is true (on); set this to false (off) to not specify an "indent" key, leaving the choice up to the stylesheet.

See Also

public void setOutputProperties (Properties outputProperties)

Set arbitrary transformer output properties to be applied to the stylesheet.

Any values specified here will override defaults that this view sets programmatically.

public void setSourceKey (String sourceKey)

Set the name of the model attribute that represents the XSLT Source. If not specified, the model map will be searched for a matching value type.

The following source types are supported out of the box: Source, Document, Node, Reader, InputStream and Resource.

public void setTransformerFactoryClass (Class transformerFactoryClass)

Specify the XSLT TransformerFactory class to use.

The default constructor of the specified class will be called to build the TransformerFactory for this view.

public void setUriResolver (URIResolver uriResolver)

Set the URIResolver used in the transform.

The URIResolver handles calls to the XSLT document() function.

Protected Methods

protected final void configureIndentation (Transformer transformer)

Configure the indentation settings for the supplied Transformer.

Parameters
transformer the target transformer

protected void configureResponse (Map<StringObject> model, HttpServletResponse response, Transformer transformer)

Configure the supplied HttpServletResponse.

The default implementation of this method sets the content type and encoding from the "media-type" and "encoding" output properties specified in the Transformer.

Parameters
model merged output Map (never null)
response current HTTP response
transformer the target transformer

protected void configureTransformer (Map<StringObject> model, HttpServletResponse response, Transformer transformer)

Configure the supplied Transformer instance.

The default implementation copies parameters from the model into the Transformer's parameter set. This implementation also copies the output properties into the Transformer output properties. Indentation properties are set as well.

Parameters
model merged output Map (never null)
response current HTTP response
transformer the target transformer

protected Source convertSource (Object source)

Convert the supplied Object into an XSLT Source if the Object type is supported.

Parameters
source the original source object
Returns
  • the adapted XSLT Source
Throws
IllegalArgumentException if the given Object is not of a supported type
Exception

protected final void copyModelParameters (Map<StringObject> model, Transformer transformer)

Copy all entries from the supplied Map into the parameter set of the supplied Transformer.

Parameters
model merged output Map (never null)
transformer the target transformer

protected final void copyOutputProperties (Transformer transformer)

Copy the configured output Properties, if any, into the output property set of the supplied Transformer.

Parameters
transformer the target transformer

protected Result createResult (HttpServletResponse response)

Create the XSLT Result used to render the result of the transformation.

The default implementation creates a StreamResult wrapping the supplied HttpServletResponse's OutputStream.

Parameters
response current HTTP response
Returns
  • the XSLT Result to use
Throws
Exception if the Result cannot be built

protected Transformer createTransformer (Templates templates)

Create the Transformer instance used to prefer the XSLT transformation.

The default implementation simply calls newTransformer(), and configures the Transformer with the custom URIResolver if specified.

Parameters
templates the XSLT Templates instance to create a Transformer for
Returns
  • the Transformer object
Throws
TransformerConfigurationException in case of creation failure

protected Class[] getSourceTypes ()

Return the array of Classes that are supported when converting to an XSLT Source.

Currently supports Source, Document, Node, Reader, InputStream and Resource.

Returns
  • the supported source types

protected Source getStylesheetSource ()

Get the XSLT Source for the XSLT template under the configured URL.

Returns
  • the Source object

protected final TransformerFactory getTransformerFactory ()

Return the TransformerFactory that this XsltView uses.

Returns
  • the TransformerFactory (never null)

protected void initApplicationContext ()

Initialize this XsltView's TransformerFactory.

protected Source locateSource (Map<StringObject> model)

Locate the Source object in the supplied model, converting objects as required. The default implementation first attempts to look under the configured source key, if any, before attempting to locate an object of supported type.

Parameters
model the merged model Map
Returns
  • the XSLT Source object (or null if none found)
Throws
Exception if an error occured during locating the source

protected TransformerFactory newTransformerFactory (Class transformerFactoryClass)

Instantiate a new TransformerFactory for this view.

The default implementation simply calls newInstance(). If a "transformerFactoryClass" has been specified explicitly, the default constructor of the specified class will be called instead.

Can be overridden in subclasses.

Parameters
transformerFactoryClass the specified factory class (if any)
Returns
  • the new TransactionFactory instance

protected void renderMergedOutputModel (Map<StringObject> model, HttpServletRequest request, HttpServletResponse response)

Subclasses must implement this method to actually render the view.

The first step will be preparing the request: In the JSP case, this would mean setting model objects as request attributes. The second step will be the actual rendering of the view, for example including the JSP via a RequestDispatcher.

Parameters
model combined output Map (never null), with dynamic values taking precedence over static attributes
request current HTTP request
response current HTTP response
Throws
Exception