‘AutoGenerator()‘ has private access in ‘com.baomidou.mybatisplus.generator.AutoGenerator

使用代码生成器,不知道为啥一直报红
‘AutoGenerator()‘ has private access in ‘com.baomidou.mybatisplus.generator.AutoGenerator_第1张图片
自己用的两个依赖是

        
        
            com.baomidou
            mybatis-plus-generator
            3.5.1
        
        
            org.freemarker
            freemarker
            2.3.31
        

很可能是两个依赖的版本不适配,换成如下版本正常了

        
            com.baomidou
            mybatis-plus-generator
            3.4.1
        

        
            org.freemarker
            freemarker
            2.3.28
        

你可能感兴趣的:(bug小记,java)