0
內部的對象屬性我有這樣的類百里香 - 春天。訪問另一個對象
public class Guardian {
public Guardian() {
super();
}
private Long id;
private String name;
..
}
public class AlarmNotification {
private Long id;
private Guardian guardian;
}
,並在我的Thymeleaf模板
<td class="col_name" th:text="${alarmNotification.guardian.name}"></td>
但我得到這個異常
org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'name' cannot be found on null
AlarmNotification中的監護人爲null。您必須初始化監護人以訪問名稱屬性。 – jmw5598
它被設置在控制器上 –
你可以添加控制器代碼 – jmw5598