springBoot
yzqingqing
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springboot 创建自定义filter 非常规写法
先来一个很普通的例子, springBoot创建自定义filter public class MyFilter implements Filter { @Override public void init(FilterConfig filterConfig) throws ServletException { } @Override public vo...原创 2019-11-02 02:03:03 · 343 阅读 · 0 评论 -
SpringBoot自动装载机制
springBoot是建立在spring的基础上,所以我们先来看下spring中类似的bean装载功能 一、ImportSelector,DeferredImportSelector ImportSelector接口只定义了一个selectImports(),用于指定需要注册为bean的Class名称。当在@Configuration标注的Class上使用@Import引入了一个ImportSel...原创 2019-03-13 19:57:07 · 5181 阅读 · 1 评论
分享