我无法在模板页面中显示模型中具有的对象的字段。我在StackOverFlow上检查了类似的问题,但它们都指向错误的命名(型号名称!=使用的EL表达式)。我已经仔细检查过,但仍然找不到问题的原因。
这是我的html:
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Spring Boot Thymeleaf Example</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<body>
<h2>Hello</h2>
<table>
<tr th:each="Persons:${persons}">
<th>Name</th>
<th>Surname</th>
<td th:text="${person.name}" />
<td th:text="${person.surname}" />
</tr>
</tbody>
</table>
</body>
</html>
这是我的Controller类:
@Controller
@RequestMapping("/persons")
public class PersonController {
private static List<Person> persons = new ArrayList();
static {
Person p = new Person("admin", "admin");
persons.add(p);
}
@GetMapping
public String getAllPersons(Model model) {
model.addAttribute("persons",persons);
return "persons";
}
很明显,有一个Person类,其中包含字段(和getter / setter):
public class Person {
private String name;
private String surname;
public Person(String name, String surname) {
super();
this.name = name;
this.surname = surname;
}
// getters/setters
}
请求“ / persons”页面时,显示以下错误:
Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'name' cannot be found on null
您能建议我如何解决此问题吗?
答案 0 :(得分:1)
th:中的变量Persons
的拼写与迭代中的拼写不同。像这样更改代码:
<tr th:each="person : ${persons}">
<th>Name</th>
<th>Surname</th>
<td th:text="${person.name}" />
<td th:text="${person.surname}" />
</tr>
答案 1 :(得分:1)
在这里输入错字:
将th:each="Persons : ${persons}
更改为th:each="person : ${persons}