例外が発生しました: 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);