idea运行mybatis出现Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException的解决方案

问题描述:

最近在看黑马的Mybatis课程时,跟着敲小案例出现了Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException: 的报错

在网上搜了一下这个报错的解决方案,最终解决了。

解决方案:

首先看看你的JDK是不是5版本的如果是就需要更改

更改如下:

File -> Project Structure

idea运行mybatis出现Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException的解决方案

 

 

 idea运行mybatis出现Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException的解决方案

 

 

 

File -> Settings... -> Build,Execution,Deployment -> Compiler -> Java Comiler

idea运行mybatis出现Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException的解决方案

 

 

idea运行mybatis出现Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException的解决方案

 

 

 

解决完JDK的版本问题后进入主题:

Exception in thread “main” org.apache.ibatis.exceptions.PersistenceException

1.如果你的MySQL是8.0以上需要修改两个地方

idea运行mybatis出现Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException的解决方案

 

 

如果问题还是没有解决就在pom.xml里面修改你的mysql-connector-java版本为8.0.16

idea运行mybatis出现Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException的解决方案

 

 问题完美解决

 

idea运行mybatis出现Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException的解决方案

上一篇:HTML详解


下一篇:kubernetes 集群搭建(二进制方式)