目录
7.@ConfigurationProperties(prefix = "user")
2.@RestController
简述:等同于@Controller+@ResponseBody
@Controller:表明该类是控制器类
@ResponseBody:返回一个json格式的数据在浏览器网页上
位置:import后,类前
3.@RequestMapping(path = "/hello",method=RequestMethod.GET)
简介:映射一个网址,等同于@GetMapping和@PostMapping等的父类
@RequestMapping标识一个类:设置映射请求的请求路径的初始信息 localhost:8080/ee/hello
@RequestMapping标识一个方法:设置映射请求请求路径的具体信息 localhost:8080/hello
位置:类或者方法前