1、@RequestMapping(value = {"/hello", “/hi”}, method = RequestMethod.GET)
此时访问/hello或者/hi都可以访问到该方法
2、@RequestMapping也可以用在类上
3、@RequestMapping的属性method = RequestMethod.GET不写时用get/post都可以访问到。但是不建议使用。
4、@PathVariable 获取url中的数据 ex: /23
@RequestParam 获取请求参数的值 ex:?id=2
@Get Mapping/PutMapping 组合注解
5、@Entity 表示该类对应数据库中的某个类
@Id 主键
@GeneratedValue 自增
6、@Transactional 开启事务