这篇文章没有摘要
http://patorjk.com/software/taag http://www.network-science.de/ascii/ http://www.degraeve.com/img2txt.php
@Configuration注解的作用:声明一个类为配置类,用于取代bean.xml配置文件注册bean对象。 @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented @Component public @interface Configuration …
作用: @EnableConfigurationProperties注解的作用是:使使用 @ConfigurationProperties 注解的类生效,自动注入。 说明: 如果一个配置类只配置@ConfigurationProperties注解,而没有使用@Component,那么在IOC容器中是获取不到properties 配置文件转化的bea…