‘GlobalConfig()‘ has private access in ‘com.baomidou.mybatisplus.generator.config.GlobalConfig‘报错

 在配置代码生成器的时候出现如下报错,

遇到的问题是在尝试访问 com.baomidou.mybatisplus.generator.config.GlobalConfig 中的 GlobalConfig() 时,发现它是私有的。

这个问题是因正在尝试访问一个私有方法,这是不允许的。在Java中,私有方法只能在其所在的类中访问。

‘GlobalConfig()‘ has private access in ‘com.baomidou.mybatisplus.generator.config.GlobalConfig‘报错_第1张图片

 找了很多资料,看到有博主说是mybatis-plus-generator的版本太高了,于是就试着把版本降成3.4.0,如何刷新一下maven,爆红的地方就消失了。

‘GlobalConfig()‘ has private access in ‘com.baomidou.mybatisplus.generator.config.GlobalConfig‘报错_第2张图片

你可能感兴趣的:(springboot,mybatis)