使用 mybatis generator 自動生成代碼,實現數據庫的增刪改查。
1 配置Mybatis插件
在pom文件添加依賴:
更新依賴成功后,可以在maven中看到已經有了mybatis插件
2 創建庫表
在數據庫創建表格,具體方式見:本地安裝并創建MySQL數據庫
3 配置參數
src/main/resources/mybatis-generator.xml :
generatorConfiguration PUBLIC
"-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd" >
<generatorConfiguration>
<context id="context" targetRuntime="MyBatis3">
<commentGenerator>
<property name="suppressAllComments" value="true"/>
<property name="suppressDate" value="true"/>
<span class="hljs-name"commentGenerator>
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/sys" userId="root" password="root"/>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
<span class="hljs-name"javaTypeResolver>
<javaModelGenerator targetPackage="com.spring.boot.dao.model" targetProject="src/main/java">
<property name="enableSubPackages" value="false"/>
<property name="trimStrings" value="true"/>
<span class="hljs-name"javaModelGenerator>
<sqlMapGenerator targetPackage="mapper" targetProject=".\\src\\main\\resources">
<property name="enableSubPackages" value="false"/>
<span class="hljs-name"sqlMapGenerator>
<javaClientGenerator targetPackage="com.spring.boot.dao" targetProject="src/main/java" type="XMLMAPPER">
<property name="enableSubPackages" value="false"/>
<span class="hljs-name"javaClientGenerator>
<table tableName="user_data"
domainObjectName="UserDataPo"
enableCountByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
enableUpdateByExample="false"/>
<span class="hljs-name"context>
<span class="hljs-name"generatorConfiguration>
4 運行插件
雙擊 mybatis-generator:generate,運行插件。
可以看到已經生成了三個文件:
在 UserDataPoMapper.java 中,添加 @Mapper
,否則會出現報錯。
5 編寫其他代碼
mybatis自動生成了數據類、接口文件和xml文件,我們只需編寫controller和servic層即可。
6 報錯問題
如果出現報錯:
Consider defining a bean of type ‘com.spring.boot.dao.UserDataPoMapper’ in your configuration.
則需要在 controller 文件中添加@controller
,在 service 文件中添加@service
,在生成的 Mapper 文件中添加@Mapper
。
學習更多編程知識,請關注我的公眾號:
[代碼的路]
-
工程師
+關注
關注
59文章
1566瀏覽量
68441 -
JAVA
+關注
關注
19文章
2958瀏覽量
104544 -
程序
+關注
關注
116文章
3776瀏覽量
80848 -
代碼
+關注
關注
30文章
4747瀏覽量
68349 -
mybatis
+關注
關注
0文章
58瀏覽量
6698
發布評論請先 登錄
相關推薦
評論