me.setBaseTemplatePath("webapp");me.setToClassPathSourceFactory();一定要写在别的添加模板语句的前面,不然打包后模板引擎找不到路径,
即config里面引擎配置类似于这样是正确的
me.setBaseTemplatePath("webapp");
me.setToClassPathSourceFactory();
me.addSharedFunction("/common/_layout.html");
me.addSharedFunction("/common/_paginate.html");
花了3个小时才找到的问题...
由于 addSharedFunction 在加载模板文件时会用到 SourceFactory 与 BaseTemplatePath 这两项配置中的变量,所以它们之间有先后次序