Apache Velocity + Servlet 3.0 [英] Apache Velocity + Servlet 3.0

查看:105
本文介绍了Apache Velocity + Servlet 3.0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在从servlet 2.5升级到3.0,并使用Apache Velocity进行模板化,在mvn依赖关系之后:tree我看到Velocity-tools依赖于servlet-api:jar:2.3,有一种使用servlet的方法带有Apache Velocity的3.0?

I'm upgrading from servlet 2.5 to 3.0, and I'm using Apache Velocity for templating, after a mvn dependency:tree I see velocity-tools depends on servlet-api:jar:2.3, there's a way to use servlet 3.0 with Apache Velocity?

预先感谢

推荐答案

我遇到了同样的问题;我的Servlet 3.0项目无法编译,因为Servlet-api 2.3作为Velocity Tools的依赖项位于Maven类路径上.

I had the same problem; my Servlet 3.0 project wouldn't compile because servlet-api 2.3 was on the Maven classpath as a dependency of Velocity Tools.

解决方法是将Velocity依赖项声明为 runtime ,因此在编译时,该项目仍使用Servlet 3.0进行构建

The work-around is to declare the Velocity dependency as runtime so at compile-time the project still builds with Servlet 3.0

<dependency>
   <groupId>org.apache.velocity</groupId>
   <artifactId>velocity-tools</artifactId>
   <version>2.0</version>
   <scope>runtime</scope>
</dependency>

这篇关于Apache Velocity + Servlet 3.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆