码迷,mamicode.com
首页 > 编程语言 > 详细

SpringMVC的view

时间:2016-09-06 19:56:56      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:

@RequestMapping("/person/{name}/{age}")
@ResponseBody //如果只是输出内容,则要加上这个,否则就会要hello.jsp
public String toPerson(@PathVariable String name,@PathVariable double age){
System.out.println(name+" "+age);
return "hello";
}

@RequestMapping(value = "/viewCar")
public String viewCar(Model model)
{
Car car = new Car();
car.setBrand("auto");
car.setPrice(100.00);
model.addAttribute(car);
return "/index/index"; //将car输出到model中,会输出index/index页面上
}

SpringMVC的view

标签:

原文地址:http://www.cnblogs.com/rrtt/p/5846936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!