使用mybatis generator出现Table Configuration scheme.table matched more than one table

在使用mybatis generator时,出现MyBatis Generator : Table Configuration scheme.table matched more than one table问题。
原因是使用了mysql8.0以上的版本,参考官网文档(http://www.mybatis.org/generator/usage/mysql.html)
解决方法是在generator.xml文件的jdbcConnection先添加一行代码:


完整的generator.xml文件如下:





    

    
    

    
    
    
    

        
        
            
            
            
        

        
        
            
            
        

        
        
            
            
            
            
        

        
        
        
            
            
            
            
            
            
            
            
        

        
        
            
            
        

        
        
            
            

        
        

你可能感兴趣的:(java)