打算开始一个使用Oauth来进行安全认证的项目,无意中搜到了SpringSecurity的原理解析帖子,拜读之后学到很多,手敲转载加强记忆。
原文地址:https://dwz.cn/A5Nem33k
Mybatis读取Blob字段图片
Posted on
|
In
bug
记录shiro新增微信免密登录的开发
Posted on
|
In
改进
解决jackson序列化pojo类出现大小写问题
Posted on
|
In
bug
springboot二次改造本地内网项目(1)
Posted on
|
In
微服务
IDEA 远程连接外部tomcat调试
Posted on
|
In
debug
记录 springboot中ContextLoader.getCurrentWebApplicationContext()为null 排查
Posted on
|
In
debug
原由:
想要通过如下代码获取项目路径
1
2
3WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext();
ServletContext servletContext = webApplicationContext.getServletContext();
String savePath = servletContext.getRealPath("/static/image");结果获取的webApplicationContext为null,从而导致接口抛出nullException的错误。