初识MyBatis-Generator

详细请见: http://www.mybatis.org/generator/quickstart.html

使用mybatis-generator-core-x.x.x.jar加上配置文件来生成

1. 建立配置文件D:\temp\test.xml  (详细配置见官网)

说明:connectionURL中jdbc:sqlserver://192.168.xx.xx:端口;databaseName=WicherTest

用的sqlserver, 192.168.xx.xx:端口表示sqlserver服务端所在的ip及侦听的端口

WicherTest为数据库名,记得 databaseName关键字与前面的分隔符是分号(; ),自己有次写错了,结果。。。

//*******************************************************************


PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">











connectionURL="jdbc:sqlserver://192.168.xx.xx:端口;databaseName=WicherTest"
userId="wicher"
password="wicherpasswd">


















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


//*******************************************************************

2. 下载mybatis-generator-core-1.3.6.jar包 (通过maven下载的,使用的版本为 1.3.6)

  路径为:    C:\Users\wicher\.m2\repository\org\mybatis\generator\mybatis-generator-core\1.3.6

maven的pom.xml添加了


org.mybatis.generator
mybatis-generator-maven-plugin
1.3.6

3. 执行DOS命令

java -jar C:\Users\wicher\.m2\repository\org\mybatis\generator\mybatis-generator-core\1.3.6\mybatis-generator-core-1.3.6.jar -configfile D:\temp\test.xml -overwrite
生成的文件就在 D:\WorkTest\wicherspringmfcfirst\src\main\java下,要留意执行结果


转载于:https://www.cnblogs.com/Wicher-lsl/p/10843579.html

你可能感兴趣的:(初识MyBatis-Generator)