JSP Struts 到 Velocity Struts 的转换
我代表我的一位学生问这个问题 - “有人知道如何将 JSP Struts 转换为 Velocity Struts 吗?”
I'm asking this on behalf of one of my students - "Does anybody have an idea how to convert JSP Struts to Velocity Struts?"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于初学者来说,您不必一次完成所有操作。 这非常重要 - 您应该只在有时间测试页面时才转换页面,否则您会得到某种程度的不良结果。 就我个人而言,我通常不会这样做,更喜欢仅使用 Velocity 进行电子邮件模板。
您必须映射 VelocityView servlet(在 web.xml 中):
您还需要创建 toolbox.xml 文件并放入您想要添加的任何工具并创建 velocity.properties ,这与该文件的其他实例没有太大不同。
请参阅 VelocityStruts 页面,了解概述和VelocityView 页面了解如何配置 Velocity servlet。
For starters, you don't have to do it all at once. That's pretty important - you should only convert pages as you have time to test them or you will get some degree of a bad result. Personally, I don't generally do this, preferring Velocity for email templating only.
You have to map the VelocityView servlet (in web.xml):
You will also need to create the toolbox.xml file and put in any tools you want to add and create the velocity.properties, which isn't very different from other instances of this file.
See the VelocityStruts page and for overview and the VelocityView page for how to configure the Velocity servlet.