首页 > 代码库 > spring mvc 编写处理带参数的Controller
spring mvc 编写处理带参数的Controller
在上一随笔记录的基础上,现记录编写处理带有参数的Controller。
@Controller //这个注解会告知<context:component:scan> 将HomeController自动检测为一个Bean
@RequestMapping("/home") //这是根Url
public class HomeController {
private UserService userService;
@Autowired
public HomeController(UserService userService){
this.userService = userService;
}
//指定请求的路径,处理get请求的路径为 xxx/home/home.html的请求
@RequestMapping(value="http://www.mamicode.com/home.html",method=RequestMethod.GET)
public String showHomePage(@RequestParam("name")String username,Model model){
model.addAttribute("username",username);
model.addAttribute("count", userService.getUsersCount());
return "home";
}
}
@RequestMapping("/home") //这是根Url
public class HomeController {
private UserService userService;
@Autowired
public HomeController(UserService userService){
this.userService = userService;
}
//指定请求的路径,处理get请求的路径为 xxx/home/home.html的请求
@RequestMapping(value="http://www.mamicode.com/home.html",method=RequestMethod.GET)
public String showHomePage(@RequestParam("name")String username,Model model){
model.addAttribute("username",username);
model.addAttribute("count", userService.getUsersCount());
return "home";
}
}
注意到,在showHomePage方法的输入参数中,有@RequestParam("name")String username这个参数,表示接收请求路径的参数name,并赋值给username.
如果请求的路径的参数名,与方法的入参的变量名一致,就可以不需要@RequestParam这个注解。
以上showHomePage这个方法处理的请求路径为:项目根路径/home/home.html?name="who"
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。