Spring的组合注解和元注解原理与用法详解
作者:cakincqm 时间:2023-12-05 10:25:05
本文实例讲述了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.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;
@Service
public 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程序设计有所帮助。
来源:https://blog.csdn.net/chengqiuming/article/details/81586184
标签:Spring,组合注解,元注解
0
投稿
猜你喜欢
Java如何将ResultSet结果集遍历到List中
2022-07-01 06:30:46
Flutter利用Hero组件实现自定义路径效果的动画
2023-06-25 13:46:29
Android通讯录开发之删除功能的实现方法
2021-07-06 10:43:53
Java 你知道什么是耦合、如何解(降低)耦合
2022-03-23 08:44:19
详解spring boot rest例子
2021-06-02 21:54:46
c#模拟银行atm机示例分享
2023-04-01 10:59:45
maven资源过滤打包后文件变大的处理方法
2023-10-05 21:38:24
Java事件监听机制讲解
2022-09-18 00:41:11
Java用BigDecimal类解决Double类型精度丢失的问题
2022-01-07 16:49:24
Android中 动态改变对话框值的方法
2023-08-17 19:44:30
对比Java中的Comparable排序接口和Comparator比较器接口
2023-10-29 04:29:51
Java的split方法使用详解
2021-10-03 06:09:57
C#基于UDP实现的P2P语音聊天工具
2022-01-18 17:44:15
Android中将View的内容保存为图像的简单实例
2023-11-01 12:45:41
Android监听输入法弹窗和关闭的实现方法
2022-06-21 02:58:39
解析Mybatis SqlSessionFactory初始化原理
2022-07-09 04:24:05
深入解析Spring Boot 的SPI机制详情
2021-07-09 04:26:49
一次Jvm old过高的排查过程实战记录
2023-05-07 23:33:49
Android自定义轮播图效果
2022-10-27 06:31:26
解决PhoneGap不支持viewport的几种方法
2023-03-13 01:51:15