xmlns:th =" http://www.thymeleaf.org"无法通过Intellij提取
我正在学习春季靴子,在我的百里叶模板中有一个问题。
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div th:if="${message}">
</div>
</body>
</html>
When i fetch the external resource, there is an invalid URL exception saying: No XML at the specified location: http://www.thymeleaf.org
进口Maven的依赖性。我正在使用Intellij社区2021.3.2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在Intellij中遇到了同样的问题,并使用此解决方案将其修复:
这将添加
namespace(xmlns:xmlns:xmlns:xmlns:th =“ http:http:” http:http:“ http:” //www.thymeleaf.org“)
属性属于HTML标签。I was having the same issue in IntelliJ and I fixed it with this solution:
This will add
namespace(xmlns:th="http://www.thymeleaf.org")
attribute to HTML tag.