摘要:
SpringSecurity拦截器链 Spring版本 <!--Spring Security过滤器链,注意过滤器名称必须叫springSecurityFilterChain--> <filter> <filter-name>springSecurityFilterChain</filter-nam 阅读全文
摘要:
三种获取登陆信息方式 @RequestMapping("/user/info") @ResponseBody public Object userInfo(Authentication authentication) { return authentication.getPrincipal(); } 阅读全文
摘要:
图形验证码认证 1.添加过滤器认证 1.1 生成一张图形验证码 Kaptcha 是谷歌提供的一个生成图形验证码的 jar 包, 只要简单配置属性就可以生成。 参考 :https://github.com/penggle/kaptcha 添加Kaptcha依赖 <!--短信验证码--> <depend 阅读全文
摘要:
idea最近在一个boot项目拆分成maven多模块的时候,发现加载不到webapp下面的配置文件,但是eclipse就没有问题,这个时候就要设置一下Working directory 阅读全文