mybatis逆向工程生成dao和mapper层

  1. mybatis逆向工程生成  dao和mapper层

MyBatis Generator官网: http://mbg.cndocs.ml/index.html

idea使用:https://blog.csdn.net/qq_23703157/article/details/78681088

Eclipse使用:https://blog.csdn.net/opera95/article/details/78296120

转载使用教程:https://blog.csdn.net/isea533/article/details/42102297

 

 

pox.xml

依赖

      
        
            org.mybatis.generator
            mybatis-generator-core
            1.3.2
        

插件


        
            
            
                org.mybatis.generator
                mybatis-generator-maven-plugin
                1.3.5
            
        
    

 

在resources文件下创建generatorConfig.xml




	  
    
    
	
		
			
			
		
		
		

		
		
			
			
		

		
		
			
		

		
		
			
		
		
		

idea用maven projects执行命令即可生成

mybatis逆向工程生成dao和mapper层_第1张图片

 

eclipse:

  右键

mybatis逆向工程生成dao和mapper层_第2张图片

mybatis逆向工程生成dao和mapper层_第3张图片

 

你可能感兴趣的:(java)