@resource :獲取spring容器中象 依賴注入
@configuration //申明這是乙個配置類
@componentscan(basepackages = )//定義掃瞄的路徑從中找出標識了需要裝配的類自動裝配到spring的bean容器中
//spring框架跟junit整合
@runwith(springjunit4classrunner.class)
@contextconfiguration(classes = springconfiguration.class) 這個註解通常與@runwith(springjunit4classrunner.class)聯合使用用來測試
spring幾個常用註解
controller 控制層,就是我們的action層 service 業務邏輯層,就是我們的service或者manager層 repository 持久層,就是我們常說的dao層 而 component 字面意思就是元件 它在你確定不了事哪乙個層的時候使用。resource 用於注入,j2ee提...
Spring註解解釋
controller public class softcreatecontroller extends basecontroller controller softcreatecontroller controller負責註冊乙個bean到spring上下文中,bean的id預設為類名稱開頭字母小...
Spring中常用的幾個註解及其作用
剛開始學spring,覺得一些用到過的註解需要統一的記錄一下,不斷更新哦 元件註解 component 新增元件 service 新增元件 controller 新增元件 repository 新增元件 componentscan 包掃瞄 bean 新增一些未加註解的類的元件 import 要匯入到...