91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Spring的組合注解和元注解原理與用法詳解

發布時間:2020-10-16 10:45:12 來源:腳本之家 閱讀:281 作者:cakincqm 欄目:編程語言

本文實例講述了Spring的組合注解和元注解原理與用法。分享給大家供大家參考,具體如下:

一 點睛

從Spring 2開始,為了相應JDK 1.5推出的注解功能,Spring開始加入注解來替代xml配置。Spring的注解主要用來配置和注入Bean,以及AOP相關配置。隨著注解的大量使用,尤其相同的多個注解用到各個類或方法中,會相當繁瑣。出現了所謂的樣本代碼,這是Spring設計要消除的代碼。

元注解:可以注解到別的注解上去的注解。

組合注解:被注解的注解,組合注解具備其上的元注解的功能。

Spring的很多注解都可以作為元注解,而且Spring本身已經有很多組合注解,如@Configuration就是一個組合了@Component的注解,表明被注解的類其實也是一個Bean。

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Component
public @interface Configuration {
  String value() default "";
}

二 實戰項目

自定義一個組合注解,它的元注解是@Configuration和@ConfigurationScan

三 實戰

1 自定義組合注解

package com.wisely.highlight_spring4.ch4.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Configuration //組合@Configuration元注解
@ComponentScan //組合@ComponentScan元注解
public @interface WiselyConfiguration {
  String[] value() default {}; //覆蓋value參數
}

2 編寫服務類

package com.wisely.highlight_spring4.ch4.annotation;
import org.springframework.stereotype.Service;
@Service
public class DemoService {
   public void outputResult(){
     System.out.println("從組合注解配置照樣獲得的bean");
   }
}

3 編寫配置類

package com.wisely.highlight_spring4.ch4.annotation;
@WiselyConfiguration("com.wisely.highlight_spring4.ch4.annotation")
public class DemoConfig {
}

4 編寫主類

package com.wisely.highlight_spring4.ch4.annotation;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
public class Main {
   public static void main(String[] args) {
     AnnotationConfigApplicationContext context =
        new AnnotationConfigApplicationContext(DemoConfig.class);
     DemoService demoService = context.getBean(DemoService.class);
     demoService.outputResult();
     context.close();
   }
}

四 運行

從組合注解配置照樣獲得的bean

更多關于java相關內容感興趣的讀者可查看本站專題:《Spring框架入門與進階教程》、《Java數據結構與算法教程》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》

希望本文所述對大家java程序設計有所幫助。

向AI問一下細節

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

AI

石嘴山市| 天等县| 隆安县| 玛曲县| 神池县| 德安县| 武城县| 广宗县| 雷山县| 双牌县| 扎赉特旗| 阿拉善右旗| 惠水县| 青浦区| 资兴市| 集贤县| 沙坪坝区| 邢台市| 平乐县| 南涧| 阳城县| 塔河县| 上栗县| 磐安县| 石棉县| 禄丰县| 富顺县| 茂名市| 越西县| 永定县| 巴林左旗| 高碑店市| 馆陶县| 大足县| 临汾市| 甘德县| 洛扎县| 平湖市| 石棉县| 敦化市| 海淀区|