” rel=”nofollow”>一、提交的域名称和处理方法的参数名一致
1、处理方法 :
@RequestMapping("/hello")
public String hello(String name){
System.out.println(name);
return "hello";//加群1025684353一起吹水聊天
}
” rel=”nofollow”>http://localhost:8080/hello?name=zhangsan
3、后台输出 : zhangsan
3、后台输出 : zhangsan
要求提交的表单域和对象的属性名一致 , 参数使用对象即可
1、实体类
public class User {
private int id;
private String name;
private int age;
//构造
//get/set
//tostring()//加群1025684353一起吹水聊天
}
2、处理方法 :
@RequestMapping("/user")
public String user(User user){
System.out.println(user);
return "hello";//加群1025684353一起吹水聊天
}
3、提交数据 : http://localhost:8080/mvc04/user?name=zhangsan&id=1&age=15
4、后台输出 : User { id=1, name=‘zhangsan’, age=15 }
” rel=”nofollow”>第一种:通过ModelAndView
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/122797.html