Spring Boot和Thymeleaf:在null上找不到字段“名称”

时间:2018-12-03 08:03:18

标签: spring-mvc spring-boot


我无法在模板页面中显示模型中具有的对象的字段。我在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

您能建议我如何解决此问题吗?

2 个答案:

答案 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}