[TOC]
## 1. @EnableConfigurationProperties、ConfigurationProperties
> 1. @ConfigurationProperties注解主要用来把properties配置文件转化为bean,并交由Spring IOC容器管理
> 2. @EnableConfigurationProperties注解的作用是@ConfigurationProperties注解生效。
> 3. 如果只配置@ConfigurationProperties注解,在IOC容器中是获取不到properties配置文件转化的bean的
>
### 1.1 @ConfigurationProperties定义配置转换bean
1. ApplicationContextAware:获取Spring资源
~~~
/**
* Created by dailin on 2018/5/2.
* 继承ApplicationContextAware,重写setApplicationContext方法,
* Spring自动给这个对象注入ApplicationContext,这样就可以操控Spring资源了
*/
@Component
public class ContextUtil implements ApplicationContextAware {
private ApplicationContext applicationContext;
@Override
public void setApplicationContext(org.springframework.context.ApplicationContext applicationContext) throws BeansException {
this.applicationContext = applicationContext;
}
public ApplicationContext getApplicationContext() {
return applicationContext;
}
}
~~~
@ConfigurationProperties(prefix = "spring.rocketmq")
prefix = "spring.rocketmq" :配置的前缀
~~~
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
@Data
@ConfigurationProperties(prefix = "spring.rocketmq")
public class MQProperties {
/**
* config name server address
*/
private String nameServerAddress;
/**
* config producer group , default to DPG+RANDOM UUID like DPG-fads-3143-123d-1111
*/
private String producerGroup;
/**
* config send message timeout
*/
private Integer sendMsgTimeout = 3000;
/**
* switch of trace message consumer: send message consumer info to topic: rmq_sys_TRACE_DATA
*/
private Boolean traceEnabled = Boolean.TRUE;
/**
* switch of send message with vip channel
*/
private Boolean vipChannelEnabled = Boolean.TRUE;
}
~~~
### 1.2 @EnableConfigurationProperties(MQProperties.class)
> 1. @EnableConfigurationProperties注解是用来开启对@ConfigurationProperties注解配置Bean的支持。也就是@EnableConfigurationProperties注解告诉Spring Boot 使能支持@ConfigurationProperties
> 2. 使得被@ConfigurationProperties标注的MQProperties.class类生成对象,也可以不指定MQProperties.class
~~~
@Configuration
@ConditionalOnBean(annotation = EnableMQConfiguration.class)
@AutoConfigureAfter({AbstractMQProducer.class, AbstractMQPushConsumer.class})
@EnableConfigurationProperties(MQProperties.class) // 使配置注解生效,以便下边可以注入到这个类对象中
public class MQBaseAutoConfiguration implements ApplicationContextAware {
protected MQProperties mqProperties;
@Autowired
public void setMqProperties(MQProperties mqProperties) {
this.mqProperties = mqProperties;
}
protected ConfigurableApplicationContext applicationContext;
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext = (ConfigurableApplicationContext) applicationContext;
}
}
~~~
## 2. @ComponentScan
@ComponentScan(basePackages={"net.aexit"})
pringBoot在写启动类的时候如果不使用@ComponentScan指明对象扫描范围,默认指扫描当前启动类所在的包里的对象,如果当前启动类没有包,则在启动时会报错:Your ApplicationContext is unlikely to start due to a @ComponentScan of the default package错误。
因为启动类不能直接放在main/java文件夹下,必须要建一个包把它放进去或者使用@ComponentScan指明要扫描的
例如,如果你有个类用@Controller注解标识了,那么,如果不加上@ComponentScan,自动扫描该controller,那么该Controller就不会被spring扫描到,更不会装入spring容器中,因此你配置的这个Controller也没有意义。
## 3. @Configuration
@Configuration相当于以前的beans标签,@Bean相当于xml的bean标签
> 1. 从Spring3.0,@Configuration用于定义配置类,可替换xml配置文件。
> 2. 被注解的类内部包含有一个或多个被@Bean注解的方法,这些方法将会被AnnotationConfigApplicationContext或AnnotationConfigWebApplicationContext类进行扫描,并用于构建bean定义,初始化Spring容器。
> 3. 被@Configuration标注的类会被实例成对象
1. MyConfig.class
~~~
@Configuration
public class MyConfig {
public MyConfig(){
System.out.println("初始化MyConfig...");
}
}
~~~
2. CommonFig.class
~~~
@Configuration
public class CommonFig {
public CommonFig(){
System.out.println("CommonFig 初始化...");
}
}
~~~
两个配置被实例化了
![](images/screenshot_1525255735892.png
## 4.根据不同的条件创建bean
### 4.1 @ConditionalOnBean
1. @ConditionalOnBean起到创建bean的过滤功能,不能创建bean
2. 当容器里有指定Bean的条件下,再依靠其他注解来创建bean
~~~
@ConditionalOnBean(MyConfig.class)
public class CommonFig {
public CommonFig(){
System.out.println("CommonFig 初始化...");
}
}
~~~
~~~
@RequestMapping(value = "/get", method = RequestMethod.GET)
@ResponseBody
public CommonFig get(Model model) {
CommonFig bean = contextUtil.getApplicationContext().getBean(CommonFig.class);
System.out.println(bean);
return bean;
}
~~~
此时没有MyConfig对象,所以不会创建CommonFig对象,所以调用CommonFig对象的方法报错
~~~
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.aixin.lovetocar.tuna.springboot.config.CommonFig' available
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:353)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:340)
at org.springframework.context.support.AbstractApplicationContext.getBean(AbstractApplicationContext.java:1092)
~~~
此时创建对象
~~~
@Configuration
public class MyConfig {
private String configName = "tuna";
public MyConfig(){
System.out.println("初始化MyConfig...");
}
~~~
还是报错(还是没有生成CommonFig对象)
~~~
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.aixin.lovetocar.tuna.springboot.config.CommonFig' available
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:353)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:340)
~~~
修改CommonFig,增加@Configuration注解
~~~
@Configuration
@ConditionalOnBean(MyConfig.class)
public class CommonFig {
public CommonFig(){
System.out.println("CommonFig 初始化...");
}
}
~~~
成功!
![](https://box.kancloud.cn/2d8792e8bb679260f3e91f723bc20fc7_1091x48.png)
**说明@ConditionalOnBean注解起到过滤的作用,不会生成bean;而@Configuration可以生成bean**
#### annotation
//当有这个注解所标识的bean生成时,才创建bean
~~~
@Configuration
@ConditionalOnBean(annotation = TestAnnotation.class)
public class CommonFig2 {
public CommonFig2(){
System.out.println("CommonFig2 初始化...");
}
}
~~~
报错,没有这个bean
~~~
org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'com.aixin.lovetocar.tuna.springboot.config.CommonFig2' available
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBean(DefaultListableBeanFactory.java:353)
~~~
**添加这个依赖的注解**
~~~
@TestAnnotation
public class AnnotationTest {
}
~~~
还是报错么有创建对象
修改AnnotationTest,让他成为bean
~~~
@TestAnnotation
@Component
public class AnnotationTest {
}
~~~
成功了
~~~
com.aixin.lovetocar.tuna.springboot.config.CommonFig2$$EnhancerBySpringCGLIB$$a5e55e1e@4c4643b4
~~~
![](https://box.kancloud.cn/d287e120ce0256ceebc338c4fa7ac175_1180x168.png)
除了自己自定义Condition之外,Spring还提供了很多Condition给我们用
@ConditionalOnBean(仅仅在当前上下文中存在某个对象时,才会实例化一个Bean)
@ConditionalOnClass(某个class位于类路径上,才会实例化一个Bean)
@ConditionalOnExpression(当表达式为true的时候,才会实例化一个Bean)
@ConditionalOnMissingBean(仅仅在当前上下文中不存在某个对象时,才会实例化一个Bean)
@ConditionalOnMissingClass(某个class类路径上不存在的时候,才会实例化一个Bean)
@ConditionalOnNotWebApplication(不是web应用)
## 5. @SpringBootApplication 包扫描规则
扫描 与@SpringBootApplication所在包同级及其子集下的所有包。
- Docker
- 什么是docker
- Docker安装、组件启动
- docker网络
- docker命令
- docker swarm
- dockerfile
- mesos
- 运维
- Linux
- Linux基础
- Linux常用命令_1
- Linux常用命令_2
- ip命令
- 什么是Linux
- SELinux
- Linux GCC编译警告:Clock skew detected. 错误解决办法
- 文件描述符
- find
- 资源统计
- LVM
- Linux相关配置
- 服务自启动
- 服务器安全
- 字符集
- shell脚本
- shell命令
- 实用脚本
- shell 数组
- 循环与判断
- 系统级别进程开启和停止
- 函数
- java调用shell脚本
- 发送邮件
- Linux网络配置
- Ubuntu
- Ubuntu发送邮件
- 更换apt-get源
- centos
- 防火墙
- 虚拟机下配置网络
- yum重新安装
- 安装mysql5.7
- 配置本地yum源
- 安装telnet
- 忘记root密码
- rsync+ crontab
- Zabbix
- Zabbix监控
- Zabbix安装
- 自动报警
- 自动发现主机
- 监控MySQL
- 安装PHP常见错误
- 基于nginx安装zabbix
- 监控Tomcat
- 监控redis
- web监控
- 监控进程和端口号
- zabbix自定义监控
- 触发器函数
- zabbix监控mysql主从同步状态
- Jenkins
- 安装Jenkins
- jenkins+svn+maven
- jenkins执行shell脚本
- 参数化构建
- maven区分环境打包
- jenkins使用注意事项
- nginx
- nginx认证功能
- ubuntu下编译安装Nginx
- 编译安装
- Nginx搭建本地yum源
- 文件共享
- Haproxy
- 初识Haproxy
- haproxy安装
- haproxy配置
- virtualbox
- virtualbox 复制新的虚拟机
- ubuntu下vitrualbox安装redhat
- centos配置双网卡
- 配置存储
- Windows
- Windows安装curl
- VMware vSphere
- 磁盘管理
- 增加磁盘
- gitlab
- 安装
- tomcat
- Squid
- bigdata
- FastDFS
- FastFDS基础
- FastFDS安装及简单实用
- api介绍
- 数据存储
- FastDFS防盗链
- python脚本
- ELK
- logstash
- 安装使用
- kibana
- 安准配置
- elasticsearch
- elasticsearch基础_1
- elasticsearch基础_2
- 安装
- 操作
- java api
- 中文分词器
- term vector
- 并发控制
- 对text字段排序
- 倒排和正排索引
- 自定义分词器
- 自定义dynamic策略
- 进阶练习
- 共享锁和排它锁
- nested object
- 父子关系模型
- 高亮
- 搜索提示
- Redis
- redis部署
- redis基础
- redis运维
- redis-cluster的使用
- redis哨兵
- redis脚本备份还原
- rabbitMQ
- rabbitMQ安装使用
- rpc
- RocketMQ
- 架构概念
- 安装
- 实例
- 好文引用
- 知乎
- ACK
- postgresql
- 存储过程
- 编程语言
- 计算机网络
- 基础_01
- tcp/ip
- http转https
- Let's Encrypt免费ssl证书(基于haproxy负载)
- what's the http?
- 网关
- 网络IO
- http
- 无状态网络协议
- Python
- python基础
- 基础数据类型
- String
- List
- 遍历
- Python基础_01
- python基础_02
- python基础03
- python基础_04
- python基础_05
- 函数
- 网络编程
- 系统编程
- 类
- Python正则表达式
- pymysql
- java调用python脚本
- python操作fastdfs
- 模块导入和sys.path
- 编码
- 安装pip
- python进阶
- python之setup.py构建工具
- 模块动态导入
- 内置函数
- 内置变量
- path
- python模块
- 内置模块_01
- 内置模块_02
- log模块
- collections
- Twisted
- Twisted基础
- 异步编程初探与reactor模式
- yield-inlineCallbacks
- 系统编程
- 爬虫
- urllib
- xpath
- scrapy
- 爬虫基础
- 爬虫种类
- 入门基础
- Rules
- 反反爬虫策略
- 模拟登陆
- problem
- 分布式爬虫
- 快代理整站爬取
- 与es整合
- 爬取APP数据
- 爬虫部署
- collection for ban of web
- crawlstyle
- API
- 多次请求
- 向调度器发送请求
- 源码学习
- LinkExtractor源码分析
- 构建工具-setup.py
- selenium
- 基础01
- 与scrapy整合
- Django
- Django开发入门
- Django与MySQL
- java
- 设计模式
- 单例模式
- 工厂模式
- java基础
- java位移
- java反射
- base64
- java内部类
- java高级
- 多线程
- springmvc-restful
- pfx数字证书
- 生成二维码
- 项目中使用log4j
- 自定义注解
- java发送post请求
- Date时间操作
- spring
- 基础
- spring事务控制
- springMVC
- 注解
- 参数绑定
- springmvc+spring+mybatis+dubbo
- MVC模型
- SpringBoot
- java配置入门
- SpringBoot基础入门
- SpringBoot web
- 整合
- SpringBoot注解
- shiro权限控制
- CommandLineRunner
- mybatis
- 静态资源
- SSM整合
- Aware
- Spring API使用
- Aware接口
- mybatis
- 入门
- mybatis属性自动映射、扫描
- 问题
- @Param 注解在Mybatis中的使用 以及传递参数的三种方式
- mybatis-SQL
- 逆向生成dao、model层代码
- 反向工程中Example的使用
- 自增id回显
- SqlSessionDaoSupport
- invalid bound statement(not found)
- 脉络
- beetl
- beetl是什么
- 与SpringBoot整合
- shiro
- 什么是shiro
- springboot+shrio+mybatis
- 拦截url
- 枚举
- 图片操作
- restful
- java项目中日志处理
- JSON
- 文件工具类
- KeyTool生成证书
- 兼容性问题
- 开发规范
- 工具类开发规范
- 压缩图片
- 异常处理
- web
- JavaScript
- 基础语法
- 创建对象
- BOM
- window对象
- DOM
- 闭包
- form提交-文件上传
- td中内容过长
- 问题1
- js高级
- js文件操作
- 函数_01
- session
- jQuery
- 函数01
- data()
- siblings
- index()与eq()
- select2
- 动态样式
- bootstrap
- 表单验证
- 表格
- MUI
- HTML
- iframe
- label标签
- 规范编程
- layer
- sss
- 微信小程序
- 基础知识
- 实践
- 自定义组件
- 修改自定义组件的样式
- 基础概念
- appid
- 跳转
- 小程序发送ajax
- 微信小程序上下拉刷新
- if
- 工具
- idea
- Git
- maven
- svn
- Netty
- 基础概念
- Handler
- SimpleChannelInboundHandler 与 ChannelInboundHandler
- 网络编程
- 网络I/O
- database
- oracle
- 游标
- PLSQL Developer
- mysql
- MySQL基准测试
- mysql备份
- mysql主从不同步
- mysql安装
- mysql函数大全
- SQL语句
- 修改配置
- 关键字
- 主从搭建
- centos下用rpm包安装mysql
- 常用sql
- information_scheme数据库
- 值得学的博客
- mysql学习
- 运维
- mysql权限
- 配置信息
- 好文mark
- jsp
- jsp EL表达式
- C
- test