当前位置:   article > 正文

Java SpringMVC_java springmvc学习

java springmvc学习

MVC
M:Model
V:View
C:Controller - servlet/action/controller

servlet中是用servlet做Controller,struts中是用action做Controller,而在SpringMVC中是用controller做Controller。

路由

url描述
@RequestMapping(“list”)
@RequestMapping(“/list.do”)如果在web.xml中配置了servlet-mapping则不需要再重新配置
@RequestMapping(value = “/list3”,method=RequestMethod.POST)只能使用POST方法
@RequestMapping(value = “/list3”,method=RequestMethod.Get)只能使用GET方法

在执行访问方法(get或post)时需要用到“value”和“method”参数。

例子:

@Controller//声明该类用注释
@RequestMapping("/user")//访问类的路径
public class UserController{
    @RequestMapping("/toRegister")//访问方法的路径
    public String toRegister(){
        return "user/register";//返回视图jsp文件,在DispatcherServlet-servlet.xml已经配置了文件的前缀和后缀
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

接收请求参数

Controller//声明该类用注释
@RequestMapping("/user")//访问类的路径
public class UserController{

    1 访问页面
    @RequestMapping("/register")//访问方法的路径

    public String toRegister(){

        return "user/register";//返回注册页面
    }

    // 转发
    @RequestMapping("/forward")
    public String froward(){
        //同一个控制器转发
        return "forward:register.do";
    }

    // 重定向
    @RequestMapping("/redirect")
    public String redirect(){
        //同一个控制器转发
        return "redirect:register.do";
    }


    2 get方法传参
    //form表单的get请求和在url中拼贴? &是等价的,下面的演示都适用url
    //1.普通get方法,既? &类型
    @RequestMapping("/get")
    public String getMethod(Integer uid, Model model){
        System.out.println(uid);
        model.addAttribute("uid",uid);
        return "user/getview";
    }
    //2.restfull风格get方法.所谓restfull风格就是将参数放在url的斜杠里面
    @RequestMapping("/getrest/{uid}")
    public String getMethodRest(@PathVariable Integer uid, Model model){
        System.out.println(uid);
        model.addAttribute("uid",uid);
        return "user/getrestview";
    }


    3 post方法传参
    //1.获取表单参数方法:将表单提交的参数写入controller方法的参数里
    @RequestMapping(value ="/login",method = RequestMethod.POST)
    public String register(String username,String password,
                           int age,String gender,Date birthday,
                           String[] hobbyIds){

        System.out.println(username);
        System.out.println(password);
        System.out.println(age);
        System.out.println(gender);
        System.out.println(birthday);
        System.out.println(Arrays.toString(hobbyIds));
        return "user/info";
    }


    //2.获取表单参数方法:将表单提交的参数通过model获取
    @RequestMapping(value ="/login2",method = RequestMethod.POST)
    public String register2(User user, Model model){
        System.out.println(user);
        model.addAttribute("user",user);
        return "user/info";
    }



    json
    //1.普通方式处理
    @RequestMapping("/registerjson1")
    public String hello(HttpServletRequest request,HttpServletResponse response) throws IOException {
        //获得json格式数据
        StringBuffer jb = new StringBuffer();
        String line;
        BufferedReader reader = request.getReader();
        while ((line = reader.readLine()) != null)
            jb.append(line);
        //返回json格式数据
        PrintWriter out = response.getWriter();
        out.append(jb.toString());
        return null;
    }



    //2.包装好的json类
    @RequestMapping("/registerjson2")
    public @ResponseBody UserJson registerjson(@RequestBody UserJson userJson){
        return userJson;
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号