package com.gql.springmvc;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
/**
* 类说明:
* 处理器的三种写法
* @guoqianliang1998.
*/
@Controller
public class UserController {
//1.SpringMVC开发方式
@RequestMapping("/hello")
public ModelAndView hello(){
ModelAndView mv = new ModelAndView();
mv.addObject("msg","hello world!");
mv.setViewName("index.jsp");
return mv;
}
//2.原生Servlet开发方式
@RequestMapping("xx")
public void xx(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
request.setAttribute("msg", "周冬雨");
request.getRequestDispatcher("/index.jsp").forward(request, response);
}
//3.开发中常用
@RequestMapping("yy")
public String yy(Model model){
model.addAttribute("msg", "双笙");
return "forward:/index.jsp";//forward写不写都是转发,redirect代表重定向.
}
}
@RequestMapping("/hello")
public ModelAndView hello(){
ModelAndView mv = new ModelAndView();
mv.addObject("msg","hello world!");
mv.setViewName("index.jsp");
return mv;
}
@RequestMapping("xx")
public void xx(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException{
request.setAttribute("msg", "周冬雨");
request.getRequestDispatcher("/index.jsp").forward(request, response);
}
@RequestMapping("yy")
public String yy(Model model){
model.addAttribute("msg", "双笙");
return "forward:/index.jsp";
}
孙丽 发表于 2020-3-3 11:44
6666666666666666
殷凯老师 发表于 2020-3-3 17:32
棒棒哒,感谢分享
耙丫丫 发表于 2020-3-3 21:25
6666666666666666666
逆风TO 发表于 2020-3-3 13:47
感谢分享,加油哦
殷凯老师 发表于 2020-3-3 17:31
棒棒哒,感谢分享
殷凯老师 发表于 2020-3-3 17:32
棒棒哒,感谢分享
殷凯老师 发表于 2020-3-3 17:31
棒棒哒,感谢分享
耙丫丫 发表于 2020-3-3 21:25
6666666666666666666
逆风TO 发表于 2020-3-3 13:47
感谢分享,加油哦
孙丽 发表于 2020-3-3 11:44
6666666666666666
耙丫丫 发表于 2020-3-3 21:25
6666666666666666666
殷凯老师 发表于 2020-3-3 17:31
棒棒哒,感谢分享
耙丫丫 发表于 2020-3-3 21:25
6666666666666666666
殷凯老师 发表于 2020-3-3 17:32
棒棒哒,感谢分享
耙丫丫 发表于 2020-3-3 21:25
6666666666666666666
殷凯老师 发表于 2020-3-3 17:32
棒棒哒,感谢分享
殷凯老师 发表于 2020-3-3 17:31
棒棒哒,感谢分享
zhaosongzhi 发表于 2020-3-3 12:29
改变是痛苦的,但成长的过程更是喜悦的,一定要加油!
殷凯老师 发表于 2020-3-3 17:31
棒棒哒,感谢分享
逆风TO 发表于 2020-3-9 14:58
努力,加油哦~
殷凯老师 发表于 2020-3-3 17:31
棒棒哒,感谢分享
殷凯老师 发表于 2020-3-3 17:32
棒棒哒,感谢分享
jsnoob 发表于 2020-3-4 09:21
加油加油加油!!!!
zplxwl 发表于 2020-3-4 22:16
6666666666666
哦嗨呦 发表于 2020-3-4 11:19
好人一生平安
yujq 发表于 2020-3-4 13:48
66666666666666666666666
零度☆黎明 发表于 2020-3-4 22:06
666666666666666666666666
爱笑的姑娘 发表于 2020-3-4 21:08
6666666666666666666666666666666
爱笑的姑娘 发表于 2020-3-4 21:08
6666666666666666666666666666666
零度☆黎明 发表于 2020-3-4 22:06
666666666666666666666666
哦嗨呦 发表于 2020-3-4 11:19
好人一生平安
逆风TO 发表于 2020-3-9 15:06
努力,加油哦~
宗进1 发表于 2020-3-4 18:13
6666666666666666
黑马程序员啊 发表于 2020-3-4 21:28
牛 6666666!
爱笑的姑娘 发表于 2020-3-4 21:08
6666666666666666666666666666666
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |