我正在尝试启动并运行 Apache Velocity。我的包里有一TestClass.class
门课。my.test.package
public class TestClass {
public static Template getTestTemplate() throws Exception {
Velocity.init();
return Velocity.getTemplate("MyTestTemplate.vm");
}
}
在同一位置 ( my.test.package
) 我有MyTestTemplate.vm
文件。
上面的代码导致抛出异常,说Unable to find resource 'MyTestTemplate.vm'
. 我不确定问题是什么。Velocity 不会在同一个包中查找文件吗?(注:我原来是在resources文件夹下的文件,但为了测试目的,把它放在同一个文件夹下)。