当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
FreeMarkerTemplateUtils (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.ui.freemarker
Class FreeMarkerTemplateUtils
java.lang.Object
org.springframework.ui.freemarker.FreeMarkerTemplateUtils
public abstract class FreeMarkerTemplateUtils
- extends Object
Utility class for working with FreeMarker.
Provides convenience methods to process a FreeMarker template with a model.
- Since:
- 14.03.2004
- Author:
- Juergen Hoeller
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FreeMarkerTemplateUtils
public FreeMarkerTemplateUtils()
processTemplateIntoString
public static String processTemplateIntoString(Template template,
Object model)
throws IOException,
TemplateException
- Process the specified FreeMarker template with the given model and write
the result to the given Writer.
When using this method to prepare a text for a mail to be sent with Spring's
mail support, consider wrapping IO/TemplateException in MailPreparationException.
- Parameters:
model
- the model object, typically a Map that contains model names
as keys and model objects as values
- Returns:
- the result as String
- Throws:
IOException
- if the template wasn't found or couldn't be read
TemplateException
- if rendering failed- See Also:
MailPreparationException
Copyright © 2002-2007 The Spring Framework.