packagecom.ruide.action;
importjava.util.HashMap;java.util.Map;
javax.servlet.http.HttpServlet;javax.servlet.http.HttpServletRequest;
org.springframework.http.HttpRequest;org.springframework.stereotype.Controller;org.springframework.ui.ModelMap;org.springframework.web.bind.annotation.ModelAttribute;org.springframework.web.bind.annotation.RequestMapping;org.springframework.web.bind.annotation.RequestParam;org.springframework.web.servlet.ModelAndView;
com.ruide.po.User;
//让spring管理类
@Controllerpublic classTestAction {设置请求路径
@RequestMapping(value="/hello.do")publicString say(){
System.out.println("Hello World");return "index";默认请求转发
return "redirect:/index.jsp";
}/** ----------------------如何从页面里获取值----------------------
*
**/
方法1:使用request接受参数
@RequestMapping("/login.do"String login(HttpServletRequest request){
String username=request.getParameter("username");
String userpass=request.getParameter("userpass");
System.out.println(username+userpass);return null方法2:直接通过注解在参数中获取值
@RequestMapping("/login.do"public String login(@RequestParam("username") String username,@RequestParam("userpass") String userpass){
System.out.println(username+" "+方法3:通过对象来接受值(该方法需要控件name与对象属性一致)
@RequestMapping("/login.do"String login(User user){
System.out.println(user.getUsername()+" "+user.getUserpass());方法4:通过与控件name同名的变量接受值
@RequestMapping("/login.do"String login(String username,String userpass){
System.out.println(userpass+" "+username);return "index";
}* ----------------------如何把值传递到页面----------------------
*
*方法1:通过request把值传递到页面
@RequestMapping("/login.do"String login(User user,HttpServletRequest request){
request.setAttribute("username",user.getUsername());
request.setAttribute("userpass"方法2:通过框架自带的modelmap集合传递到页面
@RequestMapping("/login.do"方法3:通过框架自带的model and view传递值(常用)
@RequestMapping("/login.do"ModelAndView login(User user){把值放入一个键值对中Map model=new HashMap();model.put("username",user.getUsername());ModelAndView mv=new ModelAndView("index",model);把对象直接放入键值对中
ModelAndView mv=newModelAndView();
mv.addObject("user"设置要转发的页面
mv.setViewName("index");returnmv;
}方法4:通过注解传递值(注解中的名字会被赋值)注意:注解过的方法会在整个action接受到请求时最先执行(不推荐使用)
@modelattribute("name"String getName(){return "haha";
}
}