Mybatis-Generator无法生成Example类问题

因为不了解配置文件的属性,这个小问题导致浪费了差不多一天的时间去网上找答案,可惜治标不治本,话不多说直接看代码



  

    
    
    
    
            
                
        
        
        
        

        
             
          
        
            
            
            
                      
         
            
        
        
        
        
        
           
        
            
        
        
        
            
            
            
        
        
        
            
        
        
            
            
        
        
        

这样写你会发现

enableCountByExample="true" enableUpdateByExample="true"
                    enableDeleteByExample="true" enableSelectByExample="true"
                    selectByExampleQueryId="true"

就算这么设置了也是没有用,就是死活生成不出来

当你了解配置文件targetRuntime属性后你会恍然大悟!!!
targetRuntime:
1,MyBatis3:默认的值,生成基于MyBatis3.x以上版本的内容,包括XXXBySample;
2,MyBatis3Simple:类似MyBatis3,只是不生成XXXBySample;
introspectedColumnImpl:类全限定名,用于扩展MBG

然后把配置文件改为


就好拉。

你可能感兴趣的:(Mybatis-Generator无法生成Example类问题)