时间:2021-05-20
本文实例讲述了Spring的组合注解和元注解原理与用法。分享给大家供大家参考,具体如下:
一 点睛
从Spring 2开始,为了相应JDK 1.5推出的注解功能,Spring开始加入注解来替代xml配置。Spring的注解主要用来配置和注入Bean,以及AOP相关配置。随着注解的大量使用,尤其相同的多个注解用到各个类或方法中,会相当繁琐。出现了所谓的样本代码,这是Spring设计要消除的代码。
元注解:可以注解到别的注解上去的注解。
组合注解:被注解的注解,组合注解具备其上的元注解的功能。
Spring的很多注解都可以作为元注解,而且Spring本身已经有很多组合注解,如@Configuration就是一个组合了@Component的注解,表明被注解的类其实也是一个Bean。
@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Componentpublic @interface Configuration { String value() default "";}二 实战项目
自定义一个组合注解,它的元注解是@Configuration和@ConfigurationScan
三 实战
1 自定义组合注解
package com.wisely.highlight_spring4.ch3.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.ch3.annotation;import org.springframework.stereotype.Service;@Servicepublic class DemoService { public void outputResult(){ System.out.println("从组合注解配置照样获得的bean"); }}3 编写配置类
package com.wisely.highlight_spring4.ch3.annotation;@WiselyConfiguration("com.wisely.highlight_spring4.ch3.annotation")public class DemoConfig {}4 编写主类
package com.wisely.highlight_spring4.ch3.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程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
java中注解机制及其原理的详解什么是注解注解也叫元数据,例如我们常见的@Override和@Deprecated,注解是JDK1.5版本开始引入的一个特性,用
这篇文章主要介绍了通过实例解析Spring组合注解与元注解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下1、
Spring中有一个概念叫「元注解」(Meta-Annotation),通过元注解,实现注解的「派生性」,官方的说法是「AnnotationHierarchy」
Java注解的原理java:注解使用,什么是注解注解也叫元数据,例如我们常见的@Override和@Deprecated,注解是JDK1.5版本开始引入的一个特
Kotlin的注解类详解及实例注解声明注解是将元数据附加到代码的方法。要声明注解,请将annotation修饰符放在类的前面:annotationclassFa