3

日食伽利略

<?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 问题或什么的。我知道我可以禁用警告检查,但这并不是我想要的。

4

1 回答 1

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"

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

于 2012-10-05T08:55:54.540 回答