Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在旧版 Java webapp 上的 Windows 7 上使用 Eclipse 3.7.2。
webapp 使用许多 JSP 包含文件,其中标签可能在该文件中打开,但在另一个文件中关闭。
例如,文件“header.jsp”有“”标签,但“footer.jsp”有“”标签。尽管一切正常,但 Eclipse 会针对这种情况给出警告“无结束标记”。
有没有办法在不关闭 JSP 和 HTML 警告并且不重新排列我的代码的情况下让这些警告消失?
谢谢
将它们重命名为 .jspf 文件,以便将它们视为 JSP 片段,然后在首选项中禁用片段验证。
右键单击编辑器,转到 Vaidation -> 选择 Ignore 希望对您有所帮助!