
常见异常总结
Super_PF
一只java的历练之路
展开
-
SpingBoot集成shiro,MyRealm中无法@Autowired注入Service的问题
网上说了很多诸如是Spring加载顺序,shiroFilter在Spring自动装配bean之前的问题,其实也有可能忽略如下低级错误。 在ShiroConfiguration中要使用@Bean在ApplicationContext注入MyRealm,不能直接new对象。 道理和Controller中调用Service一样,都要是SpringBean,不能自己new。错误方式:@Be原创 2017-12-14 16:21:25 · 6079 阅读 · 9 评论 -
Mysql异常check the manual that corresponds to your MySQL server version for the right syntax总结
异常信息:You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near …..错误总结: 1.检查sql是否有中文字符 2.检查sql字段是否与关键字冲突,如desc,join等 3.原创 2018-02-03 17:38:43 · 63363 阅读 · 2 评论