xmlns:th =" http://www.thymeleaf.org"无法通过Intellij提取

发布于 2025-01-22 22:49:29 字数 674 浏览 0 评论 0 原文

我正在学习春季靴子,在我的百里叶模板中有一个问题。

<!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

I am learning spring boot and there is a problem in my thymeleaf template.

<!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

The dependency in maven is imported. I am using Intellij Community 2021.3.2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花心好男孩 2025-01-29 22:49:29

我在Intellij中遇到了同样的问题,并使用此解决方案将其修复:

  1. 导航到以下文件&gt;设置&gt;插件
  2. 从这里插入“ thymeleaf”一旦您进行“ jblhtmltothymeleaf”将安装
  3. 安装
  4. ,然后转到您的html文件,右键单击它,然后选择“ jblhtmltothymeleaf”,

这将添加 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:

  1. Navigate to the following File > Settings > Plugins
  2. From here you will search "ThymeLeaf" once you do "JBLHtmlToThymeLeaf" will come up
  3. Install it
  4. Then go to your HTML file, right click it and select "JBLHtmlToThymeleaf"

This will add namespace(xmlns:th="http://www.thymeleaf.org") attribute to HTML tag.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文