SpringMvc 几种注解的介绍 RquestParam, RequestBody, PathVariable
2020-12-26 07:28
标签:mvc details springmvc art string return 技术 pat app RequestParam:的主要功能是当传入过来的参数name 和对应的 参数名字不一样时也可以进行对应的赋值操作 RequestBody:主要作用时用于 返回json格式数据的 参见 springmvc与json交互介绍 2还可以获取到请求体 并复制给指定参数 PathVariable:可以在请求的路径中获取到指定的变量 @ModelAtribute: 被@ModelAttribute注释的方法会在此controller每个方法执行前被执行 参加:https://blog.csdn.net/qq_35182361/article/details/77768852 SpringMvc 几种注解的介绍 RquestParam, RequestBody, PathVariable 标签:mvc details springmvc art string return 技术 pat app 原文地址:https://www.cnblogs.com/gaoSJ/p/13036692.html@Controller
public class HelloModelController {
@ModelAttribute
public void populateModel(@RequestParam String abc, Model model) {
model.addAttribute("attributeName", abc);
}
@RequestMapping(value = "/helloWorld")
public String helloWorld() {
return "helloWorld.jsp";
}
}
文章标题:SpringMvc 几种注解的介绍 RquestParam, RequestBody, PathVariable
文章链接:http://soscw.com/index.php/essay/38296.html