sitemesh2 集成velocity 装饰页面乱码
程序员文章站
2022-07-13 15:50:04
...
请参考:
http://www.cnblogs.com/andrewlee/p/3825653.html
通过改写类 VelocityView 的 getTemplate 方法
代码位置
http://svn.apache.org/viewvc/velocity/tools/tags/2.0/src/main/java/org/apache/velocity/tools/view/VelocityView.java?view=log
http://www.cnblogs.com/andrewlee/p/3825653.html
通过改写类 VelocityView 的 getTemplate 方法
public Template getTemplate(String name, String encoding) { try { if (encoding == null) { return velocity.getTemplate(name,"UTF-8"); } else { return velocity.getTemplate(name, encoding); } } catch (RuntimeException e) // FIXME This is useless with Velocity 1.7 { throw e; } catch (Exception e) // FIXME This is useless with Velocity 1.7 { throw new RuntimeException(e); } }
代码位置
http://svn.apache.org/viewvc/velocity/tools/tags/2.0/src/main/java/org/apache/velocity/tools/view/VelocityView.java?view=log
上一篇: DataTables 去掉搜索框