在taglib文件中没有检测到文档的语法约束(DTD或XML模式)

时间:2012-10-05 08:51:35

标签: java xml taglib

Eclipse galileo

<?xml version="1.0" encoding="UTF-8"?>
<taglib xmlns="http://java.sun.com/xml/ns/javaee"
        xmns:xsi="http://www.w3.org/2001/XMLSchema-instance"         
        xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/webjsptaglibrary_2_0.xsd" 
        version="2.0">
</taglib>

如何摆脱警告?应用程序工作正常,看起来像IDE问题或其他东西。我知道我可以禁用警告检查,但这不是我正在寻找的。

1 个答案:

答案 0 :(得分:3)

变化:

 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee/webjsptaglibrary_2_0.xsd"

 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/webjsptaglibrary_2_0.xsd"

确保http://java.sun.com/xml/ns/javaee/webjsptaglibrary_2_0.xsd可以使用xsd 在这种情况下,它不可用。