请求参数的绑定



我们如果写
<a href="param/testParam?username=hehe">请求参数绑定</a>
那么在
@RequestMapping("/testParam") public String testParam(String username) {
    System.out.println("执行了..."); return "success";
}
参数就会自动赋给username。
传多个参数
<a href="param/testParam?username=hehe&password=123">请求参数绑定</a>