您好,登錄后才能下訂單哦!
一、聲明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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。