Geek

博客园 首页 新随笔 联系 订阅 管理

2020年10月20日 #

摘要: 1. /** * Initialize the given bean instance, applying factory callbacks * as well as init methods and bean post processors. * <p>Called from {@link #c 阅读全文
posted @ 2020-10-20 20:27 .geek 阅读(321) 评论(0) 推荐(0) 编辑

摘要: 配置 factories 文件,然后 让 spring 去扫描到 阅读全文
posted @ 2020-10-20 20:03 .geek 阅读(272) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2020-10-20 17:19 .geek 阅读(75) 评论(0) 推荐(0) 编辑

摘要: 1. 总结: 不要 加上 @EnableWebMvc 这样 springboot 自动加上 的 静态资源处理会失效 2. 如何自定义 404 响应页面 springboot 默认页面 视图解析器 自定义异常处理 以上做法是错误的 阅读全文
posted @ 2020-10-20 16:15 .geek 阅读(80) 评论(0) 推荐(0) 编辑

摘要: Springboot autoconfigure 这个东西是专门 用来定义默认配置的 点进去 查看一下 WebMvcAutoConfiguration.java 凡是有 webjars/** 的请求,都会被导入到 resources/webjars 路径里去 阅读全文
posted @ 2020-10-20 15:47 .geek 阅读(72) 评论(0) 推荐(0) 编辑

摘要: @Component public class AppBeanPostProcessor implements BeanPostProcessor { @Override public Object postProcessBeforeInitialization(Object bean, Strin 阅读全文
posted @ 2020-10-20 15:10 .geek 阅读(72) 评论(0) 推荐(0) 编辑