Spring學習筆記六 註解

2021-10-09 14:07:36 字數 715 閱讀 8961

來學習註解了。

spring配置

<

context:component-scan

base-package

="com.kudo"

/>

<

context:annotation-config

/>

衍生註解

@component有幾個衍生註解,我們在web開發中,會按照mvc三層架構分層

1.dao 【@repository】

2.service 【@service】

3.controller 【@controller】

這四個註解功能都是一樣的,都是代表將某個類註冊到spring中,裝配bean

自動裝配

@autowired:自動裝配通過型別。名字

(如果autowired不能唯一自動裝配上屬性,則需要通過qualifier(value=「***」))

@nullable:字段標記了這個註解,說明這個字段可以為null

@resource:自動裝配通過名字。型別

作用域

@scope

("prototype"

)

Spring學習筆記(六)註解方式配置事物

當我們的專案開發有對資料庫的操作時,經常需要對事物進行管理 使用spring框架,spring容器提供對事物進行管理的配置,使用簡單的配置便可將繁瑣的事物管理託管給spring容器 spring提供兩種配置事物的方式,一種是採用註解方式,另一種是xml檔案配置方式 採用註解方式配置步驟 首先在spr...

Spring 註解學習筆記

宣告bean的註解 注入bean的註解 配置檔案的註解 aop切面程式設計註解 spring 常用配置 postconstruct 在建構函式執行完之後執行 predestroy 在 bean 銷毀之前執行 activeprofiles 用來宣告活動的 profile profile 為不同環境下使...

Spring 註解學習筆記

宣告bean的註解 注入bean的註解 配置檔案的註解 aop切面程式設計註解 spring 常用配置 postconstruct 在建構函式執行完之後執行 predestroy 在 bean 銷毀之前執行 activeprofiles 用來宣告活動的 profile profile 為不同環境下使...