冲天香阵透长安,满城尽带黄金甲。这篇文章主要讲述使用Mybatis-Generator自己主动生成DaoModelMapping相关文件相关的知识,希望能为你提供帮助。
准备工作:
1.数据库驱动程序
2.generatorConfig驱动,(下载地址:https://github.com/mybatis/generator/releases)
3.generatorConfig.xml配置文件。例如以下(注意:在执行的时候此文件里不能有凝视。):
<
?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>
<
!--数据库驱动-->
<
classPathEntry
location="WebRoot/WEB-INF/lib/mysql-connector-java-5.1.8-bin.jar"/>
<
context id="DB2Tables"
targetRuntime="MyBatis3">
<
commentGenerator>
<
property name="suppressDate" value="https://www.songbingjia.com/android/true"/>
<
property name="suppressAllComments" value="https://www.songbingjia.com/android/true"/>
<
/commentGenerator>
<
!--数据库链接地址账号password-->
<
jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://192.168.1.88:3306/test" userId="zhengshou" password="123456">
<
/jdbcConnection>
<
javaTypeResolver>
<
property name="forceBigDecimals" value="https://www.songbingjia.com/android/false"/>
<
/javaTypeResolver>
<
!--生成Model类存放位置-->
<
javaModelGenerator targetPackage="com.adon.model" targetProject="src">
<
property name="enableSubPackages" value="https://www.songbingjia.com/android/true"/>
<
property name="trimStrings" value="https://www.songbingjia.com/android/true"/>
<
/javaModelGenerator>
<
!--生成映射文件存放位置-->
<
sqlMapGenerator targetPackage="com.adon.mapping" targetProject="src">
<
property name="enableSubPackages" value="https://www.songbingjia.com/android/true"/>
<
/sqlMapGenerator>
<
!--生成Dao类存放位置-->
<
javaClientGenerator type="XMLMAPPER" targetPackage="com.adon.dao" targetProject="src">
<
property name="enableSubPackages" value="https://www.songbingjia.com/android/true"/>
<
/javaClientGenerator>
<
!--生成相应表及类名,tableName和domainObjectName为必选项,分别代表数据库表名和生成的实力类名,其余的能够自己定义去选择(普通情况下均为false)。
【使用Mybatis-Generator自己主动生成DaoModelMapping相关文件】-->
<
table tableName="user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false">
<
/table>
<
/context>
<
/generatorConfiguration>
打开cmd,进入项目根文件夹,执行一下代码(注意路径问题):
java -jar WebRoot/WEB-INF/lib/mybatis-generator-core-1.3.2.jar -configfile src/config/generatorConfig.xml -overwrite
推荐阅读
- 《A First Course in Abstract Algebra with Applications》-chaper1-数论-棣莫弗定理
- android中9-patch图片的使用
- 拼多多系统商城模式平台APP开发
- Vue 2.0 Application Sample
- Android对UDP组播接收数据的有限支持
- android 编译调用C代码
- app 设计原则 ,步骤
- android实现gif图与文字混排
- android SQLite 批量插入数据慢的解决方案 (针对于不同的android api 版本)