一、声明bean注解
1 | @Component | 通用注解 |
2 | @Controller | 表现层 |
3 | @Service | 业务逻辑层 |
4 | @Repository | 数据访问层(dao层) |
5 | @RestController | 表现层,@Controller+@ResponseBody |
二、注入bean注解
1 | @Resource | |
2 | @Autowired | spring提供 |
3 | @Inject |
三、bean作用域、bean生命周期注解
1、bean的作用域
1 | @Scope |
1) singleton :单例,spring默认配置,一个spring容器中只有一个bean的实例,全容器共享一个实例。
2) Prototpe :多实例,每次调用创建一个bean实例
3) Request :
4) Session :
5) GlobalSession :
2、bean的生命周期
1 | ||
2 |
四、main方法入口注解
1 | @SpringBootApplication |
1 | ||
2 | ||
3 |
五、aop注解
1 | ||
2 | ||
3 | ||
4 |
1 | @SpringBoorApplication | springboot启动注解 |
2 | @configuration | springboot |
3 | @EnableAutoConfiguration | |
4 | @RestController | controller层注解,相当于@ResponseBody和@Controller的组合注解 |
5 | @Controller | controller层注解 |
6 | @ResponseBody | 返回json格式,与@Controller搭配使用 |
7 | @RequestMapping | 请求路径限制 |
8 | @RequestParam | 读取请求参数 |
9 |
1 | @Service | service层注解 |
2 | @Autowired | 自动装配 |
3 | @Resource | 注入对象之间的关系 |
4 | @Value |
@Mapper
@Repository
1 | @Mapper | Dao层注解 |
2 | @Query | |
3 | @Param | |
4 |
1 | @Entity | 实体类注解 |
2 | @Table | 表名 |
3 | @Id | 表中的id |
4 | @Transient |
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。