【发布时间】:2018-05-28 21:16:06
【问题描述】:
我有一个页面,其中包含有关数据库中计算器结果的信息。当我尝试单击一个按钮到下一页时,如果我会检查更多详细信息,那么 java catch 异常:
The given id must not be null!; nested exception is java.lang.IllegalArgumentException: The given id must not be null!
为什么我有这个错误?
我的控制器:
@GetMapping("/form")
public String selectData(Model model){
model.addAttribute("calcResults", calculatorRepository.findAll());
return "user/form";
}
-
@PostMapping("/show")
public String showDetails(@ModelAttribute(value = "calcResults") CalculatorResult calcResults,Model model){
System.out.println(calcResults.getId());
model.addAttribute("calcResults", calculatorRepository.findOne(calcResults.getId()));
return "user/show";
}
-
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org">
<head>
<link rel="stylesheet" href="style.css" type="text/css"/>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/printThis/1.12.3/printThis.js"></script>
<title>Result</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link type="text/css" rel="stylesheet" th:href="@{css/bootstrap.min.css}" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<form action="#" th:action="@{/show}" th:object="${calcResults}" method="post">
<div class="col-md-4">
<h1>Historia</h1>
</div>
<div style="padding:0 20px"/>
<table class="table table-striped">
<tr>
<th>ID</th>
<th>Data Wyjazdu</th>
<th>Data Przyjazdu</th>
<th>Akcja</th>
</tr>
<tr th:each = "calc : ${calcResults}">
<td th:text="${calc.id}"></td>
<td th:text="${#dates.format(calc.dataWyjazdu, 'dd-MM-yyyy')}"></td>
<td th:text="${#dates.format(calc.dataPrzyjazdu, 'dd-MM-yyyy')}"></td>
<td>
<button type="submit" class="btn btn-success btn-xs">Przelicz</button>
<!--<a th:href="@{/sucess}" class="btn btn-success btn-xs">Szczegóły</a>-->
</td>
</tr>
</table>
</form>
</body>
</html>
【问题讨论】:
标签: java spring model-view-controller thymeleaf