註解
等價於作用
@component
< bean
在ioc容器中宣告乙個物件
@controller
@service
@repository
@value
依賴注入,注入屬性值
@scope
宣告該bean的作用範圍
@autowired
自動裝配,在ioc容器中根據type查詢依賴
@qulifier
必須和autowire結合使用,根據name查詢依賴
@resource
先按照byname再按照bytype進行查詢
@aspect
宣告切面
@before
宣告切面中的方法型別
@after
宣告器全面中的方法型別
@configuration
bean.xml
宣告是乙個配置類
@import
匯入其他配置類
Spring註解方式和註解小結
用於建立物件的4種註解方法 component 註解 beans xmlns xmlns xsi xmlns context xsi schemalocation spring beans.xsd spring context.xsd 在其實現類上新增註解 component userservice...
Spring註解 Import註解
常用的匯入註解分類 註冊自己寫的類service dao controller可用包掃瞄 元件標註註解 controller service repository component bean 匯入的第三方包裡面的元件 import 快速給容器中匯入乙個元件 1 import 要匯入到容器中的元件 ...
spring註解之 Scope註解
1,scope註解是什麼 scope註解是springioc容器中的乙個作用域,在 spring ioc 容器中具有以下幾種作用域 基本作用域singleton 單例 prototype 多例 web 作用域 reqeust session globalsession 自定義作用域 a.single...