Springboot2.x常见注解

Springboot2.x常见注解_第1张图片
重点:
@RestController=@Controller+@ResponseBody
@RequestMapping 用于访问路径,也很重要
springBootApplication 用于启动用的,其实包括了几个子包

一般都是用的RestController 因为它可以帮你序列化返回json,而controller不行

扫描用的注解:(提高性能,不用都扫描)
在这里插入图片描述
ps:
Springboot2.x常见注解_第2张图片
此注解代表spring扫描的时候要把他new成对象,放到这个spring的ioc容器里,像@Repository,等等注解其实都是组件

你可能感兴趣的:(ssm学习笔记,spring)