
spring
啊speed
出门走走[北海道]
很多时候,你只想要一个好结果,确没去思考,需要做什么、怎么做,然后一步一步朝着这个目标去做。
找优秀的人学习
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
BeanFactoryPostProcessor
BeanFactoryPostProcessor 源码 /** * Allows for custom modification of an application context's bean definitions, * adapting the bean property values of the context's underlying bean factory. * * <p>Application contexts can auto-detect BeanFactoryPo原创 2020-05-17 17:19:43 · 147 阅读 · 0 评论 -
BeanDefinitionRegistryPostProcessor
BeanDefinitionRegistryPostProcessor 源码 /** * Extension to the standard {@link BeanFactoryPostProcessor} SPI, allowing for * the registration of further bean definitions <i>before</i> regular * BeanFactoryPostProcessor detection kicks in. In原创 2020-05-17 11:50:24 · 143 阅读 · 0 评论 -
ImportSelector接口源码分析
ImportSelector 接口定义 public interface ImportSelector { /** * Select and return the names of which class(es) should be imported based on * the {@link AnnotationMetadata} of the importing @{@l...原创 2020-04-09 23:19:00 · 188 阅读 · 0 评论 -
spring的一些特殊接口总结
org.springframework.beans.factory.config.BeanFactoryPostProcessor public interface BeanFactoryPostProcessor { /** * Modify the application context's internal bean factory after its standard * in...原创 2020-03-04 22:07:02 · 246 阅读 · 0 评论 -
HandlerInterceptor
HandlerInterceptor preHandle 在DispatcherServlet分发请求后,HandlerAdapter处理前,会被调用。这里我们可以通过 return 方法,跳出执行链。 postHandler 在DispatcherServlet返回视图前,会被调用。所以这里可以修改返回的视图内容。 afterCompletion: 在DispatcherServlet返回视图后...原创 2019-11-21 18:16:24 · 152 阅读 · 0 评论