@RequestParam注解,加与不加的区别@RequestParam将 申请参数 绑定到 控制器办法参数 上SpringMVC提供的接管一般参数的注解源码:@Target({ElementType.PARAMETER})@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface RequestParam { @AliasFor(“name”) String value() default “”; @AliasFor(“value”) …