欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Velocity--java的模板引擎

程序员文章站 2022-05-02 20:22:12
...
velocity的使用-配置(Maven) 

1.在pom.xml中添加依赖
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-tools</artifactId>
<version>2.0</version>
</dependency>
2.从velocity-tools-2.0.jar的org.apache.velocity.tools.view包中复制出velocity.properties和tools.xml文件
到WEB-INF目录下,修改velocity.properties:
input.encoding=UTF-8
output.encoding=UTF-8
相关标签: velocity