2013-09-23 82 views
0

我想忽略所有文件的特定錯誤消息,但我希望這些文件的其他錯誤消息不受影響!如何在eclipse中忽略特定的JSP驗證錯誤消息?

我的錯誤信息是這樣的:

Can not find the tag library descriptor for "/WEB-INF/da_taglib.tld" 

,並在此行中我的JSP的文件顯示:

<%@ taglib uri="/WEB-INF/da_taglib.tld" prefix="da" %>` 

我搜索的喜好,但只找到選項禁用所有某些文件的錯誤消息。 (Window-> Preferences -> General -> Validation

這也將是很好,如果我可以禁用錯誤組(Can not find the tag library descriptor for *

背景:由於出現戰爭疊加的此錯誤消息。當我部署它時它工作正常,但eclipse沒有看到文件,這就是錯誤出現的原因。

回答

2

的項目:

(right click) Properties -> Validation -> JSP Syntax -> Directives -> Unresolvable URI or tagdir 

爲工作區:

Window -> Preferences -> Web -> JSP Files -> Validation -> Directives -> Unresolvable URI or tagdir 
+0

爲我工作!我把它設置爲「警告」。這樣我仍然可以看到其他URI或tagdirs是否有問題。 –

+0

非常好!這增加了我使用Eclipse的一天。 –