本文出自明月工作室:https://www.freebytes.net/it/java/springbootshiromybatisplus.html
shiro的学习暂时告一段落,在此奉上我精心准备的框架集成:SpringBoot+Shiro+MyBatisPlus。
可在gitee下载源码:https://gitee.com/freebytes/ssmp.git
该项目,使用SpringBoot+Shiro+MyBatisPlus三大框架搭建前后端分离的web项目,具有基本的权限、角色、用户操作以及sql建表语句,自定义登录、退出过滤器,使用缓存鉴权。满足普通公司的企业级项目的基本应用。
启动项目后,输入地址:http://localhost:8080/login.html 即可访问。
初始登录账号和密码为:admin admin
你好,请教一下,你的这个项目在容器里会报错,报错如下:Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@6ffea556]
2021-01-13 14:40:05.011 WARN [http-nio-8085-exec-6] [AbstractAuthenticator 216] : Authentication failed for token submission [org.apache.shiro.authc.UsernamePasswordToken – admin, rememberMe=false]. Possible unexpected error? (Typical or expected login exceptions should extend from AuthenticationException).
java.lang.NullPointerException: null
这是和数据库事务有关系嘛?
你这是空指针异常,看下你的请求传参有没有问题
好的,我在看下,感谢。