IDEA使用mybatis-generator及配上mysql8.0.3版本遇到的bug

1.添加插件,在pom文件的下的添加以下配置


  
  org.mybatis.generator
  mybatis-generator-maven-plugin
  1.3.5
  
   
   
   
   true
   true
  
  
   
   mysql
   mysql-connector-java
   8.0.11
   
  
  

2.在resources下创建generatorConfig.xml,内容如下:




 
 
 
 
 
 
  
  
  
 
 
 
 
 
  
  
  
  
 
 
 
 
  
  
  
  
  
  
  
  
 
 
 
  
  
 
 
 
  
  
 
 
 

3.运行,这里有两种方法:

方法一:

在Intellij IDEA添加一个“Run运行”选项,使用maven运行mybatis-generator-maven-plugin插件 (mybatis-generator:generate -e):

IDEA使用mybatis-generator及配上mysql8.0.3版本遇到的bug_第1张图片

方法二:

在右侧打开maven面板在Plugins下打开Mybatis-generator下的mybatis-generator:generate,右键Run Maven Build!

IDEA使用mybatis-generator及配上mysql8.0.3版本遇到的bug_第2张图片

注意:

因为用的是mysql-8.0.11

所以配置有所不同

主要就是新版本有新特性,首先,最新官方支持将com.mysql.jdbc.Driver改为com.mysql.cj.jdbc.Driver,此外mysql8.0是不需要建立ssl连接的,你需要显示关闭,即url中的useSSL=false;最后你需要设置CST,CST可视为美国、澳大利亚、古巴或中国的标准时间。serverTimezone是设置时区的,大家可以查一下相关资料了解一下哦!

jdbc.driverClassName=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/mytest?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true&useSSL=false&serverTimezone=UTC
jdbc.username=root
jdbc.password=123456

到此这篇关于IDEA使用mybatis-generator及配上mysql8.0.3版本遇到的坑的文章就介绍到这了,更多相关IDEA使用mybatis-generator配上mysql内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(IDEA使用mybatis-generator及配上mysql8.0.3版本遇到的bug)