bboss.org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-velocity Show documentation
Show all versions of bboss-velocity Show documentation
bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com
package bboss.org.apache.velocity.runtime.resource.loader;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import java.io.InputStream;
import org.apache.commons.collections.ExtendedProperties;
import org.apache.commons.lang.StringUtils;
import bboss.org.apache.velocity.exception.ResourceNotFoundException;
import bboss.org.apache.velocity.runtime.resource.Resource;
import bboss.org.apache.velocity.util.ClassUtils;
import bboss.org.apache.velocity.util.ExceptionUtils;
/**
* ClasspathResourceLoader is a simple loader that will load
* templates from the classpath.
*
*
* Will load templates from from multiple instances of
* and arbitrary combinations of :
*
* - jar files
*
- zip files
*
- template directories (any directory containing templates)
*
* This is a configuration-free loader, in that there are no
* parameters to be specified in the configuration properties,
* other than specifying this as the loader to use. For example
* the following is all that the loader needs to be functional :
*
*
* resource.loader = class
* class.resource.loader.class =
* bboss.org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
*
*
* To use, put your template directories, jars
* and zip files into the classpath or other mechanisms that make
* resources accessable to the classloader.
*
*
* This makes deployment trivial for web applications running in
* any Servlet 2.2 compliant servlet runner, such as Tomcat 3.2
* and others.
*
*
* For a Servlet Spec v2.2 servlet runner,
* just drop the jars of template files into the WEB-INF/lib
* directory of your webapp, and you won't have to worry about setting
* template paths or altering them with the root of the webapp
* before initializing.
*
*
* I have also tried it with a WAR deployment, and that seemed to
* work just fine.
*
* @author Aki Nieminen
* @author Geir Magnusson Jr.
* @version $Id: ClasspathResourceLoader.java 471259 2006-11-04 20:26:57Z henning $
*/
public class ClasspathResourceLoader extends ResourceLoader
{
/**
* This is abstract in the base class, so we need it
* @param configuration
*/
public void init( ExtendedProperties configuration)
{
if (log.isTraceEnabled())
{
log.trace("ClasspathResourceLoader : initialization complete.");
}
}
/**
* Get an InputStream so that the Runtime can build a
* template with it.
*
* @param name name of template to get
* @return InputStream containing the template
* @throws ResourceNotFoundException if template not found
* in classpath.
*/
public InputStream getResourceStream( String name )
throws ResourceNotFoundException
{
InputStream result = null;
if (StringUtils.isEmpty(name))
{
throw new ResourceNotFoundException ("No template name provided");
}
/**
* look for resource in thread classloader first (e.g. WEB-INF\lib in
* a servlet container) then fall back to the system classloader.
*/
try
{
result = ClassUtils.getResourceAsStream( getClass(), name );
}
catch( Exception fnfe )
{
throw (ResourceNotFoundException) ExceptionUtils.createWithCause(ResourceNotFoundException.class, "problem with template: " + name, fnfe );
}
if (result == null)
{
String msg = "ClasspathResourceLoader Error: cannot find resource " +
name;
throw new ResourceNotFoundException( msg );
}
return result;
}
/**
* @see bboss.org.apache.velocity.runtime.resource.loader.ResourceLoader#isSourceModified(bboss.org.apache.velocity.runtime.resource.Resource)
*/
public boolean isSourceModified(Resource resource)
{
return false;
}
/**
* @see bboss.org.apache.velocity.runtime.resource.loader.ResourceLoader#getLastModified(bboss.org.apache.velocity.runtime.resource.Resource)
*/
public long getLastModified(Resource resource)
{
return 0;
}
}