Velocity报错: Exception in thread "main" org.apache.velocity.exception.ResourceNotFoundException:

Exception in thread "main" org.apache.velocity.exception.ResourceNotFoundException: Unable to find resource 'hellovelocity.vm'
at org.apache.velocity.runtime.resource.ResourceManagerImpl.loadResource(ResourceManagerImpl.java:474)
at org.apache.velocity.runtime.resource.ResourceManagerImpl.getResource(ResourceManagerImpl.java:352)
at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1533)
at org.apache.velocity.runtime.RuntimeInstance.getTemplate(RuntimeInstance.java:1514)

at org.apache.velocity.app.VelocityEngine.getTemplate(VelocityEngine.java:373)


是因为vm的路径有问题,可以暂时的修改为直接路径,其他的方法再探索

之前是:

 VelocityEngine ve = new VelocityEngine();
        ve.setProperty(RuntimeConstants.RESOURCE_LOADER,"classpath");
        ve.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName());
        ve.init();


修改后:

VelocityEngine ve = new VelocityEngine();
        Properties p = new Properties();
        p.setProperty(VelocityEngine.FILE_RESOURCE_LOADER_PATH, "/Users/kodulf/500mi/VoleCityDemo/src/main/java");
        ve.init(p);


参考:http://blog.csdn.net/rodulf/article/details/57075425



你可能感兴趣的:(开发中遇到的问题解决,TroubleShooting)