MyBatis Generator 生成器把其他数据库的同名表生成下来的问题

 

MyBatis Generator : Table Configuration scheme.table matched more than one table

在使用生成器生成代码的时候遇到了这个错误, 现象就是某个类中出来了数据库表里面没有的字段,非常奇怪.

解决方法是在生成器的配置文件里的数据库连接地址(就是jdbcUrl)中添加这个参数:

nullCatalogMeansCurrent=true

大概就是这个样子:



	
	
	
	
	

这个问题是在找了很久没找到然后去官网看文章看到的

资料链接 : http://www.mybatis.org/generator/usage/mysql.html

示例项目: https://gitee.com/Sod-Momas/mybatis-generator-example.git

完整的 mybatisConfig.xml






    

    

        
            
            
            
            
            
            
        

        
        
            
            
            
            
            
            
            
        


        
        
            
        

        
        
            
            
            
            
        

        
        
            
            
            
        

        
        
            
            
        

        
        

 

你可能感兴趣的:(数据库,MBG)