解讀啟動類註解(二)

2021-10-04 20:25:28 字數 806 閱讀 4530

b、@enablescheduling

c、@enableasync

d、@enablejparepositories

@enablejpaauditing

--> spring jpa 註解

@test

(expected = nosuchelementexception.

class

)public

void

whencreateemptyoptional_thennull()

毫不奇怪,嘗試訪問 emptyopt 變數的值會導致 nosuchelementexception。

訪問option的值

@test

public

void

whencreateofnullableoptional_thenok()

optional容器的詳細使用

@enablescheduling

--> 定時任務

@enableasync

--> 可以使用多執行緒

使用前首先要定義配置類詳情參考 @async註解

@enablejparepositories

--> 發現實體,發現包

用於發現和使用entity 和 reopsitory ,用於取代xml形式的配置檔案,可以簡單理解為注入。

詳細參考及使用規則

springboot啟動類註解

話說上次面試遭遇非常之尷尬,洗刷恥辱就從springboot啟動類註解開始吧。enableautoconfiguration 註解作用 自動配置,掃包範圍預設在當前類中。enableautoconfiguration也是復合註解,借助 import將所有符合配置條件的bean載入到spring的io...

二 Spring Mvc註解類

2.常用註解類 component controller service repository 四大註解類 resource autowired 註解類的異同 autowired預設按型別裝配,預設情況下必須要求依賴物件必須存在,如果要允 許null值,可以設定它的required屬性為false,...

SpringBoot入門 啟動類的註解

public static void main string args target retention retentionpolicy.runtime documented inherited springbootconfiguration enableautoconfiguration comp...