1.如果不想在xml檔案中配置bean,我們可以給我們的類加上spring元件註解,只需再配置下spring的掃瞄器就可以實現bean的自動載入。
「
@component(元件)@service(服務層)@controller(控制層)@repository(資料庫訪問層)
3.有了,另乙個標籤根本可以移除掉,因為已經被包含進去了。
提供兩個子標籤:和各代表引入和排除的過濾。
filter標籤在spring3有五個type,如下:
filter type
examples expressiondescription
annotation
org.example.someannotation
符合someannoation的target class
assignable
org.example.someclass
指定class或inte***ce的全名
aspectj
org.example..*service+
aspectj語法
regex
org\.example\.default.*
regelar expression
custom
org.example.mytypefilter
spring3新增自訂type,實作org.springframework.core.type.typefilter
Spring元件掃瞄使用詳解
1.如果不想在xml檔案中配置bean,我們可以給我們的類加上spring元件註解,只需再配置下spring的掃瞄器就可以實現bean的自動載入。2.下面是引用spring framework開發手冊中的一段話 spring 2.5引入了更多典型化註解 stereotype annotations ...
Spring元件掃瞄使用詳解
1.如果不想在xml檔案中配置bean,我們可以給我們的類加上spring元件註解,只需再配置下spring的掃瞄器就可以實現bean的自動載入。2.下面是引用spring framework開發手冊中的一段話 spring 2.5引入了更多典型化註解 stereotype annotations ...
Spring元件掃瞄使用詳解
xml version 1.0 encoding utf 8 beans xmlns xmlns xsi xmlns context xmlns aop xmlns tx xsi schemalocation spring beans 3.0.xsd spring context 3.0.xsd s...