我得到请求参数作为POJO并且在方法中什么都不做但在jsp中显示我从请求得到的参数。为什么方法返回我的对象? 另外,当我使用原始类型或String时,它不返回对象并且工作正常
控制器
@GetMapping("/ULD_details")
public String ULD_detailGet(ActionError ID){
return "ULD_detail";
JSP
<tr>
<td >ULD id</td>
<td>${actionError.ID}</td>
</tr>
链接
http://localhost:8080/UCM-controller/ULD_details?ID=1145