摘要:
<a href="/demo/handle06?birthday=2019-10-08">点击测试</a> /** * http://localhost:8080/demo/handle06?birthday=2019-10-08 */ @RequestMapping("/handle06") pu 阅读全文
摘要:
请求参数绑定:说⽩了SpringMVC如何接收请求参数 http协议(超⽂本传输协议) 原⽣servlet接收⼀个整型参数: 1) String ageStr = request.getParameter("age"); Integer age = Integer.parseInt(ageStr); 阅读全文