gpt4 book ai didi

MyBatis-Plus通过插件将数据库表生成Entiry,Mapper.xml,Mapper.class的方式

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 28 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章MyBatis-Plus通过插件将数据库表生成Entiry,Mapper.xml,Mapper.class的方式由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

创建maven项目,修改pom.xml文件,如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version= "1.0" encoding= "utf-8" ?>
<project xmlns= "http://maven.apache.org/pom/4.0.0"
      xmlns:xsi= "http://www.w3.org/2001/xmlschema-instance"
      xsi:schemalocation= "http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
   <modelversion> 4.0 . 0 </modelversion>
   <parent>
     <groupid>com.xxxx</groupid>
     <artifactid>parent-pom</artifactid>
     <version> 1.0 . 0 -snapshot</version>
   </parent>
   <groupid>com.xxxx</groupid>
   <artifactid>mapper-creator</artifactid>
   <version> 1.0 -snapshot</version>
   <properties>
     <configuration.outputdir>d:\demo-mapper-folder</configuration.outputdir>
     <datasource.url>jdbc:mysql: //192.168.18.140:8066/testdb?useunicode=true&characterencoding=utf-8</datasource.url>
     <datasource.username>root</datasource.username>
     <datasource.password> 123456 </datasource.password>
     <packageinfo.parent>com.xxxx.demotwo</packageinfo.parent>
   </properties>
   <build>
     <plugins>
       <plugin>
         <groupid>com.baomidou</groupid>
         <artifactid>mybatisplus-maven-plugin</artifactid>
         <version> 1.0 </version>
         <configuration>
           <!-- 输出目录(默认java.io.tmpdir) -->
           <outputdir>${configuration.outputdir}</outputdir>
           <!-- 是否覆盖同名文件(默认 false ) -->
           <fileoverride> true </fileoverride>
           <!-- mapper.xml 中添加二级缓存配置(默认 true ) -->
           <enablecache> true </enablecache>
           <!-- 开发者名称 -->
           <author>zuoquan tu</author>
           <!-- 是否开启 activerecord 模式(默认 true ) -->
           <activerecord> false </activerecord>
           <!-- 数据源配置,( **必配** ) -->
           <datasource>
             <drivername>com.mysql.jdbc.driver</drivername>
             <url>${datasource.url}</url>
             <username>${datasource.username}</username>
             <password>${datasource.password}</password>
           </datasource>
           <strategy>
             <!-- 字段生成策略,四种类型,从名称就能看出来含义:
               nochange(默认),
               underline_to_camel,(下划线转驼峰)
               remove_prefix,(去除第一个下划线的前部分,后面保持不变)
               remove_prefix_and_camel(去除第一个下划线的前部分,后面转驼峰) -->
             <naming>underline_to_camel</naming>
             <!-- 表前缀 -->
             <!--<tableprefix>bmd_</tableprefix>-->
             <!--entity中的id生成策略(默认 id_worker)-->
             <idgentype>uuid</idgentype>
             <!--自定义超类-->
             <!--<superserviceclass>com.baomidou.base.baseservice</superserviceclass>-->
             <!-- 要包含的表 与exclude 二选一配置-->
             <!--<include>-->
             <!--<property>sec_user</property>-->
             <!--<property>table1</property>-->
             <!--</include>-->
             <!-- 要排除的表 -->
             <!--<exclude>-->
             <!--<property>schema_version</property>-->
             <!--</exclude>-->
           </strategy>
           <packageinfo>
             <!-- 父级包名称,如果不写,下面的service等就需要写全包名(默认com.baomidou) -->
             <parent>${packageinfo.parent}</parent>
             <!--service包名(默认service)-->
             <service>service</service>
             <!--serviceimpl包名(默认service.impl)-->
             <serviceimpl>service.impl</serviceimpl>
             <!--entity包名(默认entity)-->
             <entity>entity</entity>
             <!--mapper包名(默认mapper)-->
             <mapper>mapper</mapper>
             <!--xml包名(默认mapper.xml)-->
             <xml>mapper</xml>
           </packageinfo>
           <template>
             <!-- 定义controller模板的路径 -->
             <!--<controller>/template/controller1.java.vm</controller>-->
           </template>
         </configuration>
         <dependencies>
           <dependency>
             <groupid>mysql</groupid>
             <artifactid>mysql-connector-java</artifactid>
             <version>${mysql.version}</version>
           </dependency>
         </dependencies>
       </plugin>
     </plugins>
   </build>
</project>

项目运行步骤 。

a、修改pom.xml中的properties中的各各参数的值,以适应自己项目中的配置 。

b、在maven的setting.xml中添加:

?
1
2
3
<plugingroups>
   <plugingroup>com.baomidou</plugingroup>
</plugingroups>

c、执行以下maven命令:

mvn mp:code 。

执行完成之后,即可看到弹出一个文件夹,里面包含了要生成的表的entity,mapper,mapper.xml等 。

总结 。

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我的支持。如果你想了解更多相关内容请查看下面相关链接 。

原文链接:https://blog.csdn.net/tototuzuoquan/article/details/80374881 。

最后此篇关于MyBatis-Plus通过插件将数据库表生成Entiry,Mapper.xml,Mapper.class的方式的文章就讲到这里了,如果你想了解更多关于MyBatis-Plus通过插件将数据库表生成Entiry,Mapper.xml,Mapper.class的方式的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com