java-在taglib文件中未为文档检测到语法限制(DTD或XML模式)
作者:互联网
蚀伽利略
<?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问题或其他问题.我知道我可以禁用警告检查,但这并不是我想要的.
解决方法:
更改:
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之前可用
在这种情况下,它不可用.
标签:taglib,xml,java 来源: https://codeday.me/bug/20191127/2075078.html