标签:不能 string time control user ram val ring ppi
1、@Controller()
2、@RequestMapping()
3、@RequestParam() 解决参数名不一致,给参数赋初值。
4、@PathVariable(value=" "): 获取url中的数据,当接受的参数名和url中的{}获取的名字不一致的时候,使用value(名字和url中的一致)
@RequestMapping("/{username}/path.do")
public ModelAndView path(@PathVariable("username") String s_username)
5、@ResponseBody:return 返回的字符串不再是url地址,而是数据。
6、@DateTimeFormat(pattern=“yyyy-MM-dd”).
7、@validated 表单校验注解,不能加在String和基本数据类型前面。
标签:不能 string time control user ram val ring ppi
原文地址:https://www.cnblogs.com/shank/p/10226489.html