>
>
org.springframeworkgroupid
>
>
spring-webmvcartifactid
>
>
5.2.0.releaseversion
>
dependency
>
>
>
org.springframeworkgroupid
>
>
spring-jdbcartifactid
>
>
5.2.0.releaseversion
>
dependency
>
>
>
org.junit.jupitergroupid
>
>
junit-jupiterartifactid
>
>
5.4.2version
>
>
testscope
>
dependency
>
@component : 元件,放在類上,說明這個類被spring管理了,就是乙個bean
//等價於
//@component 元件
@component
public
class
user
}
@component 有幾個衍生的註解,我們在web開發中,會按照mvc三層架構分層
- dao 【@repository】 (倉庫的意思)
- service 【@service】
- controller【@controller】
這四個註解功能是一樣的,都代表將某個類註冊到spring容器中進行裝配
@component
@scope
("singleton"
)public
class
user
}
xml 與 註解:
最佳實踐:
<
context:component-scan
base-package
="com.shp.pojo"
/>
<
context:annotation-config
/>
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...