代码拉取完成,页面将自动刷新
see:https://blog.csdn.net/qq_44836294/article/details/107762974
see:https://blog.csdn.net/qq_44836294/category_10205554.html
see: https://blog.csdn.net/huzhiliayanghao/article/details/115712505 spring BeanFactoryPostProcessor自定义扩展和执行流程
see: https://www.cnblogs.com/theRhyme/p/11057233.html#_label3_4_2_1
要记住重要的注解,重要的流程,重要的类继承关系图
1:重要的注解
2:不太重要的注解
@Target(ElementType.TYPE) // 注解的适用范围,其中TYPE用于描述类、接口(包括包注解类型)或enum声明
@Retention(RetentionPolicy.RUNTIME) // 注解的生命周期,保留到class文件中(三个生命周期)
@Documented // 表明这个注解应该被javadoc记录
@Inherited // 子类可以继承该注解
@SpringBootConfiguration // 继承了Configuration,表示当前是注解类
@EnableAutoConfiguration // 开启springboot的注解功能,springboot的四大神器之一,其借助@import的帮助
@ComponentScan(excludeFilters = { // 扫描路径设置
@Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
@Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。