在 tomcat Web 应用程序中配置速度。 (想要食谱)
我最近被介绍到 Velocity 项目。
我编写了一个模板并将其作为简单的 Java 应用程序运行。
集成到我现有的网络项目中并不那么容易。
谁能提供一本集成 Velocity 和 Tomcat 的食谱吗?
谢谢大家!
I have recently been introduced to the Velocity project.
I have written a template and have run it as a simple Java application.
Integration within my existing web project has not been that easy.
Can anyone supply a cookbook for integrating Velocity and Tomcat?
Thanks all!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Tomcat是一个Servlet容器;您不需要将 Velocity 与其集成,而是需要与您的应用程序集成。具体如何完成取决于您的应用程序:
Tomcat is a servlet container; you don't need to integrate Velocity with it but rather with your application. How exactly that should be done depends on your application:
定义 VelocityViewServlet
最简单的方法是在 web.xml 中的Velocity.properties 中
然后将模板放在 web 应用程序的根目录下,并使用其名称作为 URL 从 Web 浏览器访问它。例如
The straightforward way is to define a VelocityViewServlet in web.xml
In velocity.properties
Then put your template at the root of your webapp and access it from the web browser using its name as the URL. e.g.