亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

@Resources, @Inject和@Autowired的區別是什么

發布時間:2021-11-03 10:32:50 來源:億速云 閱讀:140 作者:iii 欄目:編程語言

這篇文章主要介紹“@Resources, @Inject和@Autowired的區別是什么”,在日常操作中,相信很多人在@Resources, @Inject和@Autowired的區別是什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”@Resources, @Inject和@Autowired的區別是什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

@Resources

官方文檔里對@Resources的說明:

The @Resource annotation is part of the JSR-250 annotation collection and is packaged with Jakarta EE.

什么是JSR-250呢?訪問這個鏈接:https://id=250https://id=330

注入的優先級:

  1. Match by Type

  2. Match by Qualifier

  3. Match by Name

Match by Type

注意@Inject注入的最高優先級方式為Match by Type,而非@Resource的Match by Name.

任意定義一個待注入的Component:

@Componentpublic class ArbitraryDependency {
    private final String label = "Arbitrary Dependency";
    public String toString() {
        return label;
    }}

使用@Inject注入:

@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(
  loader=AnnotationConfigContextLoader.class,
  classes=ApplicationContextTestInjectType.class)public class FieldInjectIntegrationTest {
    @Inject
    private ArbitraryDependency fieldInjectDependency;
    @Test
    public void givenInjectAnnotation_WhenOnField_ThenValidDependency(){
        assertNotNull(fieldInjectDependency);
        assertEquals("Arbitrary Dependency",
          fieldInjectDependency.toString());
    }}

Match by Qualifier

定義一個新的待注入組件:

public class AnotherArbitraryDependency extends ArbitraryDependency {
    private final String label = "Another Arbitrary Dependency";
    public String toString() {
        return label;
    }}

測試代碼:

@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(
  loader=AnnotationConfigContextLoader.class,
  classes=ApplicationContextTestInjectQualifier.class)public class FieldQualifierInjectIntegrationTest {
    @Inject
    private ArbitraryDependency defaultDependency;
    @Inject
    private ArbitraryDependency namedDependency;
    @Test
    public void givenInjectQualifier_WhenOnField_ThenDefaultFileValid(){
        assertNotNull(defaultDependency);
        assertEquals("Arbitrary Dependency",
          defaultDependency.toString());
    }
    @Test
    public void givenInjectQualifier_WhenOnField_ThenNamedFileValid(){
        assertNotNull(defaultDependency);
        assertEquals("Another Arbitrary Dependency",
          namedDependency.toString());
    }}

和之前@Resource的第一次試圖通過Match by Type注入一樣失敗,遇到異常:NoUniqueBeanDefinitionException

利用@Qualifier避免這個異常:

@Inject@Qualifier("defaultFile")private ArbitraryDependency defaultDependency;@Inject@Qualifier("namedFile")private ArbitraryDependency namedDependency;

Match by Name

public class YetAnotherArbitraryDependency extends ArbitraryDependency {
    private final String label = "Yet Another Arbitrary Dependency";
    public String toString() {
        return label;
    }}

消費者代碼:

@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(
  loader=AnnotationConfigContextLoader.class,
  classes=ApplicationContextTestInjectName.class)public class FieldByNameInjectIntegrationTest {
    @Inject
    @Named("yetAnotherFieldInjectDependency")
    private ArbitraryDependency yetAnotherFieldInjectDependency;
    @Test
    public void givenInjectQualifier_WhenSetOnField_ThenDependencyValid(){
        assertNotNull(yetAnotherFieldInjectDependency);
        assertEquals("Yet Another Arbitrary Dependency",
          yetAnotherFieldInjectDependency.toString());
    }}

application context代碼:

@Configurationpublic class ApplicationContextTestInjectName {
    @Bean
    public ArbitraryDependency yetAnotherFieldInjectDependency() {
        ArbitraryDependency yetAnotherFieldInjectDependency =
          new YetAnotherArbitraryDependency();
        return yetAnotherFieldInjectDependency;
    }}

到此,關于“@Resources, @Inject和@Autowired的區別是什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

镇平县| 镇雄县| 马关县| 友谊县| 东乌| 巴林左旗| 安塞县| 南通市| 信丰县| 若羌县| 兴宁市| 汾阳市| 山西省| 新建县| 富裕县| 德昌县| 维西| 东宁县| 宜兴市| 汉寿县| 长白| 汉沽区| 姜堰市| 博兴县| 澄江县| 工布江达县| 芦山县| 天峻县| 富顺县| 乡城县| 南召县| 项城市| 克东县| 黔南| 遂宁市| 宁阳县| 桦川县| 运城市| 澄江县| 怀来县| 兴安县|