基於jsr-250規範,當bean建立完成時,會後置執行@postconstruct方法,並且只會執行一次constructor(構造方法) -> @autowired(依賴注入) -> @postconstruct(注釋的方法)servlet中增加了兩個影響servlet生命週期的註解(annotion),但這個註解並不用在servlet上
我對這個註解的理解是,當spring啟動時,要把所有的component載入到容器中(包括dao、service、controller等等)
當bean在載入時,會根據 構造器 -> 依賴(@autowired、@resource)-> @postconstruct
一般用來初始化
Spring註解 Import註解
常用的匯入註解分類 註冊自己寫的類service dao controller可用包掃瞄 元件標註註解 controller service repository component bean 匯入的第三方包裡面的元件 import 快速給容器中匯入乙個元件 1 import 要匯入到容器中的元件 ...
Java 註解 元註解
retention retentionpolicy.source 註解僅存在於原始碼中,在class位元組碼檔案中不包含 retention retentionpolicy.class 預設的保留策略,註解會在class位元組碼檔案中存在,但執行時無法獲得,retention retentionpo...
spring註解之 Scope註解
1,scope註解是什麼 scope註解是springioc容器中的乙個作用域,在 spring ioc 容器中具有以下幾種作用域 基本作用域singleton 單例 prototype 多例 web 作用域 reqeust session globalsession 自定義作用域 a.single...