Java 阿帕奇';s速度—;getTemplate()。如何传递字符串/对象而不是.VM文件

Java 阿帕奇';s速度—;getTemplate()。如何传递字符串/对象而不是.VM文件,java,velocity,Java,Velocity,Apache的Velocity-getTemplate()。实际上它允许传递.vm文件名,我可以在这里传递字符串/对象吗?是否有任何方法可以传递字符串/对象?查看StringResourceLoader我在同一个问题上搜索了几个小时,最终找到了显示所有必要信息的单元测试代码 这是一个对我有用的示例代码。 Velocity版本:1.7 我使用log4j作为记录器 import org.apache.log4j.Logger; import org.apache.velocity.Template;

Apache的Velocity-getTemplate()。实际上它允许传递.vm文件名,我可以在这里传递字符串/对象吗?是否有任何方法可以传递字符串/对象?

查看StringResourceLoader

我在同一个问题上搜索了几个小时,最终找到了显示所有必要信息的单元测试代码


这是一个对我有用的示例代码。
Velocity版本:1.7
我使用log4j作为记录器

import org.apache.log4j.Logger;
import org.apache.velocity.Template;
import org.apache.velocity.VelocityContext;
import org.apache.velocity.app.Velocity;
import org.apache.velocity.app.VelocityEngine;
import org.apache.velocity.runtime.RuntimeConstants;
import org.apache.velocity.runtime.resource.loader.StringResourceLoader;
import org.apache.velocity.runtime.resource.util.StringResourceRepository;


private static void velocityWithStringTemplateExample() {
    // Initialize the engine.
    VelocityEngine engine = new VelocityEngine();
    engine.setProperty(RuntimeConstants.RUNTIME_LOG_LOGSYSTEM_CLASS, "org.apache.velocity.runtime.log.Log4JLogChute");
    engine.setProperty("runtime.log.logsystem.log4j.logger", LOGGER.getName());
    engine.setProperty(Velocity.RESOURCE_LOADER, "string");
    engine.addProperty("string.resource.loader.class", StringResourceLoader.class.getName());
    engine.addProperty("string.resource.loader.repository.static", "false");
    //  engine.addProperty("string.resource.loader.modificationCheckInterval", "1");
    engine.init();

    // Initialize my template repository. You can replace the "Hello $w" with your String.
    StringResourceRepository repo = (StringResourceRepository) engine.getApplicationAttribute(StringResourceLoader.REPOSITORY_NAME_DEFAULT);
    repo.putStringResource("woogie2", "Hello $w");

    // Set parameters for my template.
    VelocityContext context = new VelocityContext();
    context.put("w", "world!");

    // Get and merge the template with my parameters.
    Template template = engine.getTemplate("woogie2");
    StringWriter writer = new StringWriter();
    template.merge(context, writer);

    // Show the result.
    System.out.println(writer.toString());
}

我找到了StringResourceLoader的一个示例。但是我们的模板信息是字符串格式的。我们需要传递字符串而不是.vm。对于这种情况,我应该怎么做。请检查是否有任何示例代码。StringResourceLoader允许您直接将模板添加到存储库中,然后像任何其他模板一样检索它们。StringResourceLoader.getRepository().putStringResource(myTemplateName,myTemplateString)
StringResourceLoader.getRepository()
返回null。有什么要设置的属性吗?已经很长时间了。可能应该配置一个VelocityEngine来使用它,并首先使用如下属性初始化引擎:resource.loader=string string.resource.loader.class=org.apache.velocity.runtime.resource.loader.StringResourceLoader测试了所有测试,所有测试都以velocity 1.7失败!我们可以同时使用类资源加载器和字符串资源加载器吗?