mybatis_generator自动生成 实体类,映射器,映射接口类

安装插件: help->install new sofeware 加入地址

name:generator

location:http://mybatis.googlecode.com/svn/sub-projects/generator/trunk/eclipse/UpdateSite

配置文件

generatorConfig.xml






	
	

	
		
		
			
			
		

		
		

		
		
			
		

		
		
			
			
			
			
		

		
		
			
		

		
		
			
		

		
		

说明:

生成实体类配置


		
			
			
			
			
		
生成映射器xml文件配置

		
			
			
			
			
		



生成mapper接口


		
			
		

数据库表配置


		
		

设置不生成Example类

enableCountByExample="false" 
enableUpdateByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
selectByExampleQueryId="false"


你可能感兴趣的:(mybatis)