使用 Struts 的 Jsp 页面中出现重复前缀错误
我是第一次创建和配置 Struts,当我将以下代码放入 jsp 页面时,
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
,出现错误
当我将鼠标移到第一行 "Duplicate Prefix "html"时 我将鼠标移到第二行,得到“重复前缀“html” 同样,对于第三行和第四行,
任何人都可以告诉我为什么这个错误都是关于
提前致谢
i am creating and Configuring the Struts for the first time, when I place the following Code in my jsp page
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
I am getting the error when i move the mouse over the 1st Line "Duplicate Prefix "html"
When I move the mouse over the 2nd Line, I am getting as "Duplicate Prefix "html"
Similarly for 3rd and 4th Line,
Can any one tell me why is this error all about
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有时 Eclipse 会忘记清理,尤其是 JSP 错误时。
当您运行该应用程序时,您是否遇到相同的错误?如果没有,那就是日食问题。
当我收到无效的持续 JSP 错误时,我会执行此操作:全选、剪切、保存、粘贴、保存。
您尝试清理该项目吗? (项目菜单 -> 清洁)
重启eclipse也可以解决这个问题。
Sometimes eclipse forgets to cleanup, especially with JSP errors.
When you run the application, do you get the same error? If not, then it is an eclipse issue.
I do this when I get this persistent JSP errors that are not valid: Select All, Cut, Save, Paste, Save.
Did you try cleaning the project? (Project Menu -> Clean)
Restarting eclipse may also solve this.