自动生成实体类(方式二)
通过YMP框架提供的Maven扩展工具插件
步骤1:编译并安装ymate-maven-extension扩展工具
下载扩展工具源码(YMP框架Maven扩展工具项目地址)
执行命令:git clone https://git.oschina.net/suninformation/ymate-maven-extension.git
编译并安装到本地Maven仓库
执行命令: cd ymate-maven-extension mvn clean install
步骤2:将pom.xml中添加ymate-maven-plugin
插件ymate-maven-plugin
插件
<plugin> <groupId>net.ymate.maven.plugins</groupId> <artifactId>ymate-maven-plugin</artifactId> <version>1.0-SNAPSHOT</version> </plugin>
步骤3:执行插件生成实体
在工程根路径下执行命令:
mvn ymate:entity
输出内容:
Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF-8 [INFO] Scanning for projects... [INFO] ......(此处省略若干字) [INFO] --- ymate-maven-plugin:1.0-SNAPSHOT:entity (default-cli) @ ymp-examples-webapp --- 三月 25, 2016 12:25:07 上午 net.ymate.platform.core.YMP init 信息: __ ____ __ ____ ____ \ \ / / \/ | _ \ __ _|___ \ \ V /| |\/| | |_) | \ \ / / __) | | | | | | | __/ \ V / / __/ |_| |_| |_|_| \_/ |_____| Website: http://www.ymate.net/ 三月 25, 2016 12:25:07 上午 net.ymate.platform.core.YMP init 信息: Initializing ymate-platform-core-2.0.0-GA build-20160324-2339 - debug:true ......(此处省略若干字) 信息: [show tables][][1][13ms] Output file "/Users/suninformation/IdeaProjects/ymate-platform-examples/ymp-examples-webapp/src/main/java/net/ymate/platform/examples/model/User.java". [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 1.577s [INFO] Finished at: Fri Mar 25 00:25:08 CST 2016 [INFO] Final Memory: 10M/163M [INFO] ------------------------------------------------------------------------
通过插件生成的代码默认放置在src/main/java
rrreee
src/main/java
路径,当数据库表发生变化时,直接执行插件命令就可以快速更新数据实体对象,🎜是不是很更方便呢,大家可以动手尝试一下!🎜:p🎜🎜