spark.template.freemarker.FreeMarkerEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spark-template-freemarker Show documentation
Show all versions of spark-template-freemarker Show documentation
Freemarker Template Engine implementation for Spark
/*
* Copyright 2013 - Per Wendel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package spark.template.freemarker;
import freemarker.template.Configuration;
import freemarker.template.Template;
import freemarker.template.TemplateException;
import spark.ModelAndView;
import spark.TemplateEngine;
import spark.TemplateViewRoute;
import java.io.IOException;
import java.io.StringWriter;
/**
* Renders HTML from Route output using FreeMarker.
*
* FreeMarker configuration can be set with the {@link FreeMarkerEngine#setConfiguration(Configuration)}
* method. If no configuration is set the default configuration will be used where
* ftl files need to be put in directory spark/template/freemarker under the resources directory.
*
* @author Alex
* @author Per Wendel
*/
public class FreeMarkerEngine extends TemplateEngine {
/** The FreeMarker configuration */
private Configuration configuration;
/**
* Creates a FreeMarkerEngine
*/
public FreeMarkerEngine() {
this.configuration = createDefaultConfiguration();
}
/**
* Creates a FreeMarkerEngine with a configuration
*
* @param configuration The Freemarker configuration
*/
public FreeMarkerEngine(Configuration configuration) {
this.configuration = configuration;
}
/**
* {@inheritDoc}
*/
@Override
public String render(ModelAndView modelAndView) {
try {
StringWriter stringWriter = new StringWriter();
Template template = configuration.getTemplate(modelAndView.getViewName());
template.process(modelAndView.getModel(), stringWriter);
return stringWriter.toString();
} catch (IOException e) {
throw new IllegalArgumentException(e);
} catch (TemplateException e) {
throw new IllegalArgumentException(e);
}
}
/**
* Sets FreeMarker configuration.
* Note: If configuration is not set the default configuration
* will be used.
*
* @param configuration the configuration to set
*/
public void setConfiguration(Configuration configuration) {
this.configuration = configuration;
}
private Configuration createDefaultConfiguration() {
Configuration configuration = new Configuration();
configuration.setClassForTemplateLoading(FreeMarkerEngine.class, "");
return configuration;
}
}