在基于 Struts 的 Web 应用程序中的 JSP 页面中使用 JSTL

发布于 2024-07-24 21:51:49 字数 320 浏览 6 评论 0原文

我有一个基于 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

黄昏下泛黄的笔记 2024-07-31 21:51:49

确保您使用的 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.

も让我眼熟你 2024-07-31 21:51:49

尝试使用这个:

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>

代替这个,反之亦然

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

Try using this:

<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>

instead of this or vise versa

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文