SpringMVC (6): 데이터 처리

9906 단어 JavaspringmvcSpring
제출 데이터 처리
1. 제출 한 도 메 인 이름과 처리 방법의 매개 변수 이름 이 일치 합 니 다.
제출 데이터:http://localhost:8080/hello?name=Devin
처리 방법:
@RequestMapping("/hello")
public String hello(String name){
   System.out.println(name);
   return "hello";
}

배경 출력: Devin
2. 제출 한 도 메 인 이름과 처리 방법의 매개 변수 이름 이 일치 하지 않 습 니 다.
제출 데이터:http://localhost:8080/hello?username=Devin
처리 방법: @ RequestParam
//@RequestParam("username") : username        .
@RequestMapping("/hello")
public String hello(@RequestParam("username") String name){
   System.out.println(name);
   return "hello";
}

배경 출력: Devin
3. 제출 한 대상
제출 을 요구 하 는 폼 필드 와 대상 의 속성 명 이 일치 합 니 다. 매개 변 수 는 대상 을 사용 하면 됩 니 다.
1. 실체 류 pojo
public class User {
   private int id;
   private String name;
   private int age;
   //  
   //get/set
   //tostring()
}

2. 데이터 제출
http://localhost:8080/mvc04/user?name=Devin&id=1&age=15
3. 처리 방법
@RequestMapping("/user")
public String user(User user){
   System.out.println(user);
   return "hello";
}

백그라운드 출력
User { id=1, name='kuangshen', age=15 }

설명: 대상 을 사용 하면 전단 에서 전달 하 는 매개 변수 이름과 대상 이름 이 일치 해 야 합 니 다. 그렇지 않 으 면 null 입 니 다.
데이터 가 전면 에 표 시 됨
ModelAndView
public class ControllerTest1 implements Controller {

   public ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
       //          
       ModelAndView mv = new ModelAndView();
       mv.addObject("msg","ControllerTest1");
       mv.setViewName("test");
       return mv;
  }
}

ModelMap
@RequestMapping("/hello")
public String hello(@RequestParam("username") String name, ModelMap model){
   //            
   //   req.setAttribute("name",name);
   model.addAttribute("name",name);
   System.out.println(name);
   return "hello";
}

Model
@RequestMapping("/ct2/hello")
public String hello(@RequestParam("username") String name, Model model){
   //            
   //   req.setAttribute("name",name);
   model.addAttribute("msg",name);
   System.out.println(name);
   return "test";
}
Model                  ,       Model        ;

ModelMap     LinkedMap ,            ,      LinkedMap       ;

ModelAndView           ,             ,          。

좋은 웹페이지 즐겨찾기