- /*
- * Copyright 2002-2004 the original author or authors.
- *
- * 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 org.springframework.web.servlet.view.velocity;
- import java.io.IOException;
- import org.apache.velocity.app.VelocityEngine;
- import org.apache.velocity.exception.VelocityException;
- import org.springframework.beans.factory.InitializingBean;
- import org.springframework.context.ResourceLoaderAware;
- import org.springframework.ui.velocity.VelocityEngineFactory;
- /**
- * JavaBean to configure Velocity for web usage, via the "configLocation"
- * and/or "velocityProperties" and/or "resourceLoaderPath" bean properties.
- * The simplest way to use this class is to specify just a "resourceLoaderPath":
- * You do not need any further configuration then.
- *
- * <pre>
- * <bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
- * <property name="resourceLoaderPath"><value>/WEB-INF/velocity/</value></property>
- * </bean></pre>
- *
- * This bean must be included in the application context of any application
- * using Spring's VelocityView for web MVC. It exists purely to configure Velocity.
- * It is not meant to be referenced by application components but just internally
- * by VelocityView. Implements VelocityConfig to be found by VelocityView without
- * depending on the bean name the configurer. Each DispatcherServlet can define its
- * own VelocityConfigurer if desired.
- *
- * <p>Note that you can also refer to a preconfigured VelocityEngine instance, for
- * example one set up by VelocityEngineFactoryBean, via the "velocityEngine" property.
- * This allows to shared a VelocityEngine for web and email usage, for example.
- *
- * @author Rod Johnson
- * @author Juergen Hoeller
- * @version $Id: VelocityConfigurer.java,v 1.14 2004/04/22 07:58:27 jhoeller Exp $
- * @see #setConfigLocation
- * @see #setVelocityProperties
- * @see #setResourceLoaderPath
- * @see #setVelocityEngine
- * @see org.springframework.ui.velocity.VelocityEngineFactoryBean
- * @see VelocityView
- */
- public class VelocityConfigurer extends VelocityEngineFactory
- implements VelocityConfig, InitializingBean, ResourceLoaderAware {
- private VelocityEngine velocityEngine;
- /**
- * Set a preconfigured VelocityEngine to use for the Velocity web config, e.g.
- * a shared one for web and email usage, set up via VelocityEngineFactoryBean.
- * If this is not set, VelocityEngineFactory's properties (inherited by this
- * class) have to be specified.
- * @see org.springframework.ui.velocity.VelocityEngineFactoryBean
- */
- public void setVelocityEngine(VelocityEngine velocityEngine) {
- this.velocityEngine = velocityEngine;
- }
- /**
- * Initialize VelocityEngineFactory's VelocityEngine
- * if not overridden by a preconfigured VelocityEngine.
- * @see #createVelocityEngine
- * @see #setVelocityEngine
- */
- public void afterPropertiesSet() throws IOException, VelocityException {
- if (this.velocityEngine == null) {
- this.velocityEngine = createVelocityEngine();
- }
- }
- public VelocityEngine getVelocityEngine() {
- return this.velocityEngine;
- }
- }