为什么@GetMapping方法在发送响应时返回请求参数?

时间:2018-03-04 08:26:56

标签: spring jsp spring-mvc pojo getmethod

我得到请求参数作为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

0 个答案:

没有答案