如何在 Eclipse 中配置 Java velocity 模板引擎?
How to configure Java velocity template engine in Eclipse?
我是 Java 速度模板引擎的新手。我在 Eclipse 中创建了一个动态 Web 项目,并将所需的 jar 文件(velocity-tools-1.4.jar
、velocity-dep-1.4.jar
、commons-collections-3.2.1.jar
和 commons-lang-2.3.jar
)放在 WebContent --> web-inf -->
lib 文件夹中并配置了我的web.xml
.
我已经创建了一个 servlet 和一个 vm 文件。但是当我尝试执行该项目时,出现错误。我尝试了不同的解决方案,但仍然出现相同的错误。任何人都可以分享我在 Eclipse 中配置 Java 速度模板引擎的完整步骤吗?
你可以使用Maven,然后就像添加依赖一样简单:
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
在 Velocity 的主要站点,他们说:
If you want to jumpstart your application, simply include velocity-x.x.x.jar in your classpath: it includes all classes of Velocity Engine (with the exclusion of the examples). Include all the jars in the "lib" subdirectory too.
我是 Java 速度模板引擎的新手。我在 Eclipse 中创建了一个动态 Web 项目,并将所需的 jar 文件(velocity-tools-1.4.jar
、velocity-dep-1.4.jar
、commons-collections-3.2.1.jar
和 commons-lang-2.3.jar
)放在 WebContent --> web-inf -->
lib 文件夹中并配置了我的web.xml
.
我已经创建了一个 servlet 和一个 vm 文件。但是当我尝试执行该项目时,出现错误。我尝试了不同的解决方案,但仍然出现相同的错误。任何人都可以分享我在 Eclipse 中配置 Java 速度模板引擎的完整步骤吗?
你可以使用Maven,然后就像添加依赖一样简单:
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>1.7</version>
</dependency>
在 Velocity 的主要站点,他们说:
If you want to jumpstart your application, simply include velocity-x.x.x.jar in your classpath: it includes all classes of Velocity Engine (with the exclusion of the examples). Include all the jars in the "lib" subdirectory too.