- 一、Controller层
1.@Controller
扫描到controller层
2.@RequestMapping("test")
拦截请求
3.@ResponseBody
返回参数可以是字符串
如果只有@controller,没有@ResponseBody,则只能返回html页面
4.@RequestParam("name")
传入参数,页面中在?后面添加
@RequestParam(value = "age",defaultValue = "18")
可以设置默认值
5.@RestController
RestController = Controller + ResponseBody
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)