主要问题
在使用SpringBoot整合Mybatis操作Oracle数据库的时候,报错信息如下:
### Cause: org.apache.ibatis.executor.result.ResultMapException: Error attempting to get column 'ID' from result set. Cause: java.sql.SQLException: 不支持的字符集 (在类路径中添加 orai18n.jar): ZHS16GBK
解决方法
在项目工程的pom.xml文件中,添加如下内容:
<dependency>
<groupId>cn.easyproject</groupId>
<artifactId>orai18n</artifactId>
<version>12.1.0.2.0</version>
</dependency>
<hr style=" border:solid; width:100px; height:1px;" color=#000000 size=1">
本篇文章到这里就基本结束了,如果这篇文章对你有帮助,希望大家能留下你的点赞、 关注、 分享、 留言❤️❤️❤️
2021年05月25日