首页 > 其他 > 详细

mybatis基础学习4-插件生成器

时间:2017-03-03 22:42:33      阅读:219      评论:0      收藏:0      [点我收藏+]

1:安装

技术分享

2:在所建项目单击右键输入mybatis如下图

*建项目文件时不用建包和类,配置文件

技术分享

 

技术分享

 3:之后在项目生成

技术分享

 

 技术分享

自己建的表

技术分享

单击右键

技术分享

即可

-----------------------------------------------------------------------------------------------------------------

 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!-- 指定mysql的驱动包的路径 千万别放中文路径下 -->
<classPathEntry location="C:\Users\Administrator\Desktop\mysql-connector-java-5.1.7-bin.jar" />
<!-- 配置数据源和生成的代码所存放的位置 -->
<context id="context1">

<commentGenerator>
<!-- 去除自动生成的注释 -->
<property name="suppressAllComments" value="true" />
</commentGenerator>

<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://127.0.0.1:3306/mybatis" userId="root"
password="" />
<!-- 所生成的实体类的位置默认资源包src -->
<javaModelGenerator targetPackage="com.rjxy.model"
targetProject="test01" />
<!-- 所生成的sqlMap的影射文件的位置,默认资源包src -->
<sqlMapGenerator targetPackage="com.rjxy.sql.mapper"
targetProject="test01" />

<!-- 为哪些表生成代码 tableName:表名 schema:不用填写,其余属性是禁用例子查询的生成 -->
<table schema="" tableName="student" enableCountByExample="false"
enableUpdateByExample="false" enableDeleteByExample="false"
enableSelectByExample="false" selectByExampleQueryId="false">
</table>

</context>
</generatorConfiguration>

 

mybatis基础学习4-插件生成器

原文:http://www.cnblogs.com/kaiwen/p/6498535.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!