@yulongsun
2018-08-21T06:46:38.000000Z
字数 678
阅读 1093
SpringBoot分析系列
准备知识:
Spring后处理器
org.springframework.context.annotation.Configuration
属于Spring4范畴。本质还是一个Commponent。
@Target(ElementType.TYPE)@Retention(RetentionPolicy.RUNTIME)@Documented@Componentpublic @interface Configuration {String value() default "";}


参考:
1. https://blog.csdn.net/fuckaholic/article/details/78307100
