自動產生實體類別(方式二)
透過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
外掛程式
<plugin> <groupId>net.ymate.maven.plugins</groupId> <artifactId>ymate-maven-plugin</artifactId> <version>1.0-SNAPSHOT</version> </plugin>
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路徑,當資料庫表改變時,直接執行插件指令就可以快速更新資料實體對象,
是不是很方便呢,大家可以動手嘗試! :p