velocity 2.0 包需要的 jar 包
官方下载的,测试过了,可以运行
Demo 网上都有,关键几行代码:
// ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "file"); // 按文件加载
// ve.init();
// Template t = ve.getTemplate("src/velocity/hellovelocity.vm");
ve.setProperty(RuntimeConstants.RESOURCE_LOADER, "classpath"); // 在类路径下加载
ve.setProperty("classpath.resource.loader.class", ClasspathResourceLoader.class.getName());
ve.init();
Template t = ve.getTemplate("velocity/hellovelocity.vm");
1