Spring SAXParseException

时间:2015-06-02 07:03:41

标签: java angularjs spring spring-mvc

我正在尝试使用spring boot开发一个应用程序,我有以下html

<!doctype html>
<html ng-app>
<head>
<title>Hello AngularJS</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script>
<script src="hello.js"></script>
</head>

<body>
<div ng-controller="Hello">
<p>The ID is {{greeting.id}}</p>
<p>The content is {{greeting.content}}</p>
</div>
</body>
</html>

我收到此错误,我不知道为什么,这与https://spring.io/guides/gs/consuming-rest-angularjs/

中的示例中的代码相同

org.xml.sax.SAXParseException:与元素类型“html”关联的属性名称“ng-app”必须后跟“=”字符。

2 个答案:

答案 0 :(得分:0)

这条线对我来说似乎有问题

<html ng-app>

试试这一行

<html ng-app="">

因为如果您不想为angularJS应用程序命名,则声明为空。另外我建议在ng-app=""代码中使用body而不是html代码

答案 1 :(得分:0)

我解决了这个问题。

将application.properties的“ spring,thymeleaf.mode”设置为“ LEGACYHTML5”。

spring.thymeleaf.mode=LEGACYHTML5

然后在pom.xml中添加依赖项:

<dependency>
  <groupId>net.sourceforge.nekohtml</groupId>
  <artifactId>nekohtml</artifactId>
  <version>1.9.22</version>
</dependency>