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问题或其他东西。我知道我可以禁用警告检查,但这不是我正在寻找的。
答案 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
在这种情况下,它不可用。