All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.luues.tool.template.engine.velocity.SimpleStringResourceLoader Maven / Gradle / Ivy

There is a newer version: 2.0.1.RELEASE
Show newest version
package cn.luues.tool.template.engine.velocity;

import java.io.InputStream;
import java.io.Reader;
import java.io.StringReader;

import cn.luues.tool.core.io.IoUtil;
import cn.luues.tool.core.util.CharsetUtil;
import org.apache.velocity.exception.ResourceNotFoundException;
import org.apache.velocity.runtime.resource.Resource;
import org.apache.velocity.runtime.resource.loader.ResourceLoader;
import org.apache.velocity.util.ExtProperties;

/**
 * {@link ResourceLoader} 的字符串实现形式
* 用于直接获取字符串模板 * * @author Mr-Wu * */ public class SimpleStringResourceLoader extends ResourceLoader { @Override public void init(ExtProperties configuration) { } /** * 获取资源流 * * @param source 字符串模板 * @return 流 * @throws ResourceNotFoundException 资源未找到 */ public InputStream getResourceStream(String source) throws ResourceNotFoundException { return IoUtil.toStream(source, CharsetUtil.CHARSET_UTF_8); } @Override public Reader getResourceReader(String source, String encoding) throws ResourceNotFoundException { return new StringReader(source); } @Override public boolean isSourceModified(Resource resource) { return false; } @Override public long getLastModified(Resource resource) { return 0; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy