springboot
文章平均质量分 61
t518vs20s
这个作者很懒,什么都没留下…
展开
-
mysql报错: SELECT command denied to bm_user ‘aaa‘@‘localhost‘ for table ‘bm_user‘
错误信息的字面意思是:表“bm_user”拒绝用户“aaa”@“localhost”的SELECT命令 ,用户没有查看bm_user表的权限,需要root账号授权 用户aaa对表bm_user的select操作权限以下2种原因:1.使用root账号登录数据库,执行授权SQLgrant select on adb.bm_user to 'aaa'@'localhost' IDENTIFIED BY '';授权后需要刷新权限才会生效:flush privileges;2.数据库 adb的用户原创 2021-10-29 14:55:47 · 433 阅读 · 0 评论 -
No SecurityManager accessible to the calling code
org.apache.shiro.UnavailableSecurityManagerException: No SecurityManager accessible to the calling code, either bound to the org.apache.shiro.util.ThreadContext or as a vm static singleton. This is a...原创 2019-11-24 14:46:17 · 3502 阅读 · 2 评论 -
springboot配置druid数据源
1、在pom.xml中添加如下依赖<!-- Druid 数据连接池依赖 --><dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.0.28</version&am原创 2018-04-25 18:03:11 · 171 阅读 · 0 评论