【发布时间】:2017-06-26 07:28:27
【问题描述】:
使用 NetBeans 8.1 的 SpringBoot maven 项目。
如果我在 src/main/resources 的 templates 文件夹中创建一个 html 文件并添加 xmlns:th=" http://www.thymeleaf.org" 到 html 标签我有错误 Attribute with local name "xmlns:th" is not serializable as XML 1.0强>。
<html lang="en-US" xmlns:th="http://www.thymeleaf.org">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div></div>
</body>
thymeleaf 依赖在 pom.xml 中声明并在 Dependencies 中下载。
【问题讨论】:
标签: html spring-boot thymeleaf