springboot
leys123
这个作者很懒,什么都没留下…
展开
-
springboot项目的controller中,只加载一次数据库表数据
在springboot项目的controller中,有时候需要用到初始化一次数据库表数据1、创建ApplicationRunner类@Component // 被spring容器管理@Order(2) // 如果多个自定义ApplicationRunner,用来标明执行顺序public class AppInfoApplicationRunner implements ApplicationRunner { @Autowired private DBTool dbTool; @Ove原创 2021-01-26 16:55:29 · 794 阅读 · 0 评论 -
解决springboot项目日志中大量Request method ‘HEAD‘ not supported警告
异常描述:2021-01-22 20:10:12.269 WARN 8814 --- [nio-9090-exec-4] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'HEAD' not supported]2021-01-22 20:10:12.269 WARN 8814 --原创 2021-01-26 16:23:41 · 2881 阅读 · 0 评论