【转载】Idea常见问题整理
一、<statement> or DELIMITER expected, got 'id',这个错误是发生在MyBatis的Mapper的XML文件的sql节点上,第一个字段是什么错误中最后一个单引号内部就是什么,
解决方案,干掉方框中的sql|
即:
问题一图解
二、Unable to resolve table '<table-name>'
问题2
解决方案:勾掉Unresolved refereence
三、Result type doesn't match for xxx
四、'(', ':=', '=' or '[' expected, got 'id'
解决方案:去掉 where之前的,
即可
五、Usage of API documented as @since 1.6+
六、Class '<class-name>' is never used
七、Variable '<var-name>' initializer 'null' is redundant
八、idea cannot resolve file "applicationContext.xml"
这个问题的原因就是idea找不到这个文件,也就是这个文件要放在字节码目录的根目录中,那么你:
- 首先检查有没有编写这个文件
- 其次看这个文件有没有放在resources目录下
- 看idea中这个resources有没有被标记为Resource Root
原文链接:https://www.jianshu.com/p/e20eb9645ce9