欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Springboot使用过程中(Spring)常用注解总结

程序员文章站 2024-01-02 23:08:22
...

@ConfigurationProperties

当ioc完成对象初始化后,扫描含有该注解的类,然后找到对应属性值,并通过set方法注入到对象内部。可以匹配注入。
以 server.port=8080 为例
Springboot使用过程中(Spring)常用注解总结
Springboot使用过程中(Spring)常用注解总结

@Value

仅仅能注入一些基本类型的数据,对于list,array,set,map就无能为力了。
Springboot使用过程中(Spring)常用注解总结
Springboot使用过程中(Spring)常用注解总结

@Validated

一般用于约束实体类上属性的注入。

@PropertySource

由于springboot默认属性配置文件为application-.yml(application-.properties(ps:这个优先级比yml高)),但是如果名称想自己定义,那么可以使用该注解。放在任意地方都可以,一般放在启动内上。
Springboot使用过程中(Spring)常用注解总结

@ImportResource

springboot引入外部xml
Springboot使用过程中(Spring)常用注解总结

@Bean

Springboot使用过程中(Spring)常用注解总结

@ConditionalOnJava

系统的java版本是否符合要求

@ConditionalOnBean

容器中存在指定Bean;

@ConditionalOnMissingBean

容器中不存在指定Bean;

@ConditionalOnExpression

满足SpEL表达式指定

@ConditionalOnClass

系统中有指定的类

@ConditionalOnMissingClass

系统中没有指定的类

@ConditionalOnSingleCandidate

容器中只有一个指定的Bean,或者这个Bean是首选Bean

@ConditionalOnProperty

系统中指定的属性是否有指定的值

@ConditionalOnResource

类路径下是否存在指定资源文件

@ConditionalOnWebApplication

当前是web环境

@ConditionalOnNotWebApplication

当前不是web环境

@Profile(value=“dev”)

表示采用哪一种配置文件

@SpringBootApplication

springboot启动注解。包括@EnableAutConfigruation和@SpringBootConfiguration
Springboot使用过程中(Spring)常用注解总结

@EnableAutConfigruation

自动导入配置类.含有@AutoConfigurationPackage

@AutoConfigurationPackage

自己扫描包的配置类

@SpringBootConfiguration

包括@Configuration
Springboot使用过程中(Spring)常用注解总结

@Configuration

作用于类上,相当于一个xml配置文件

@Import

在创建配置文件之后可以引入其它的配置文件

@RestControllerAdvice

controller统一处理异常的
Springboot使用过程中(Spring)常用注解总结

相关标签: 源码分析

上一篇:

下一篇: