Eclipse插件:MyBatis Generator代码自动生成工具

MyBatis Generator是一款优秀的工具,可以帮助我们自动生成java实体类,mapper接口和xml,极大得简化了开发流程,今天,就记录下在eclipse中使用eclipse插件集成MyBatis Generator的步骤;

【1:插件安装】Help--Eclipser Marketplace中查找:Mybatis Generator 1.3.5安装

Eclipse插件:MyBatis Generator代码自动生成工具_第1张图片

安装好后,就可以在项目中使用MyBatis Generator了;

【2:创建generatorConfig.xml】右键—New—Other—MyBatis—MyBatis Generator Configuration File

Eclipse插件:MyBatis Generator代码自动生成工具_第2张图片

Eclipse插件:MyBatis Generator代码自动生成工具_第3张图片

【3.设置generatorConfig.xml】这里贴出我自己创建的generatorConfig.xml,注释写得很详细,可以直接拿过来用。





	
	
	
	
	
		
		
			
			
		

		
		
		
		
		
		
	
				
		

		
		
		
		
		

【4.自动生成代码】选中generatorConfig.xml—右键—Run As—Run MyBatis Generator

Eclipse插件:MyBatis Generator代码自动生成工具_第4张图片

【5.代码自动生成】在配置文件设置好的目录下面,查看自动生成的文件

Eclipse插件:MyBatis Generator代码自动生成工具_第5张图片

你可能感兴趣的:(eclipse,mybatis)