Spring註解開發

2021-10-14 21:10:07 字數 639 閱讀 2031

註解開發:

<1>匯入初始的配置

標頭檔案中要有context

<3>bean的注入

@component註解

此時無需在xml檔案中配置bean。可以通過上面的component-scan自動掃瞄。

使用是getbean()中的引數可以直接是類的首字母小寫。

<4>屬性的注入

@value("")

放在set方法上也可以

<5>component衍生註解

|-dao【@repository】

|-service【@service】

|-controller【@controller】

這些衍生註解和component作用相同。只是用於不同的地方。

<6>作用域註解

@scope(「singleton」)。

附:最佳使用方法:

(1)xml用來管理bean

(2)註解只負責屬性的注入

Spring註解開發

spring註解開發 dao層用的註解 repository service層的註解 service controller表現層的註解 controller 以上的三個註解都是用 componment新增三個衍生的註解 屬性依賴注入 value的屬性注入 value wwtmy love 注入的是屬...

spring註解開發

第一步,設定xml約束檔案 第一步,設定xml約束檔案 xmlns xsi xmlns context xsi schemalocation spring beans.xsd spring context.xsd 第二步,定義bean 除了 component外,spring提供了3個功能基本和 c...

Spring註解開發

在spring4之後,要使用註解開發,但是必須保證aop的包存在 使用註解必須保證匯入context約束增加註解的支援 xmlns xmlns xsi xmlns context xsi schemalocation spring beans.xsd spring context.xsd conte...