@RequestMapping是一个用来处理请求地址映射的注解,可用于类或者方法上.用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径. @RequestMapping注解有六个属性,下面进行详细的说明. value:指定请求的实际地址,指定的地址可以是URI Template模式. value的uri值为以下三类: A) 可以指定为普通的具体值: B) 可以指定为含有某变量的一类值: C) 可以指定为含正则表达式的一类值; method:指定请求的method类型,GET.POST
1.使用一个Map<String, String>接收数据 When you request a Map annotated with @RequestParam Spring creates a map containing all request parameter name/value pairs. If there are two pairs with the same name, then only one can be in the map. So it's essentially