在基于 Struts 的 Web 应用程序中的 JSP 页面中使用 JSTL
我有一个基于 Struts 1.2 的 Web 应用程序,它在 JSP 页面中使用大量 scriptlet 代码,我希望使用 JSTL 来清理代码。Servlet 规范级别:2.3 和 JSP 规范级别:1.2。 我正在使用 WSAD 5.1。
我尝试使用
标记,但在构建项目时出现以下错误。 “JSP 翻译:无法加载 if 标记”
我已包含此标记库的 taglibs 元素以及相应文件夹中的 TLD 文件。
我猜容器无法找到标签处理程序。
如果有人能分享他们对此的想法,那就太好了。
I have a Struts 1.2 based Web App which uses lot of scriptlet code in the JSP page, I wish to clean up the code by using JSTL.The Servlet Specification Level: 2.3 and JSP Specification Level: 1.2.
I am using WSAD 5.1.
I tried using <c:if></c:if>
tag, but I get the following error on building the project.
"JSP Translate: unable to load if tag"
I have included the taglibs element for this tag library and also the TLD file in the appropriate folder.
I guess the container is not able to locate the tag handler.
It would be great if someone could share their thoughts on this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保您使用的 JSTL 版本与您的 servlet 容器兼容。 例如,JSTL 1.1仅兼容JSP 2.0及以上版本。
Make sure you're using a version of JSTL compatible with your servlet container. For example, JSTL 1.1 is only compatible with JSP 2.0 and above.
尝试使用这个:
代替这个,反之亦然
Try using this:
instead of this or vise versa