发生异常:org.apache.velocity.exception.ResourceNotFoundException:找不到资源“ResourceLoader1.vm”
我在 /WEB-INF/templates 中有 ResourceLoader1.vm,我坚持下来了,请帮帮我。
Properties props = new Properties();
props.put("file.resource.loader.path", "/WEB-INF/templates");
Velocity.init(props);
VelocityContext context = new VelocityContext();
context.put("greetings", "Many Happy returns");
context.put("name", "Joseph");
Writer writer = new StringWriter();
Template template = Velocity.getTemplate("ResourceLoader1.vm");
template.merge(context, writer);