欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MyBatis plugin (3.154)的安装与使用

程序员文章站 2022-06-15 22:34:36
...

资源链接

MyBatis plugin官网

MyBatis plugin官方文档

MyBatis plugin 插件下载

MyBatis plugin **方法

MyBatis plugin **文件

MyBatis plugin 的安装

  MyBatis plugin的安装非常简单,在IDEA中找到【File】->【Settings】->【Plugins】,如下所示:

MyBatis plugin (3.154)的安装与使用

  安装完成之后,重启IDEA就可以使用了。

MyBatis plugin 的**

  的**在上面的资源链接中有,由于完全是中文版,所以说我在这里就不用再复述了,在这里,直接使用我提供的**jar文件进行覆盖操作即可,比如说我的覆盖的路劲为:

C:\Users\HP\.IntelliJIdea2017.2\config\plugins\MyBatis plugin\lib

MyBatis plugin的使用

  创建MyBatis配置文件的方式是点击:【File】->【New】->【Mybatis】->【New Configuration File】。

MyBatis plugin (3.154)的安装与使用

  比如说我们所创建的配置文件名为mybatis-generator.xml,则自动创建的文件内容如下:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>

    <settings>
        <!-- Globally enables or disables any caches configured in any mapper under this configuration -->
        <setting name="cacheEnabled" value="true"/>
        <!-- Sets the number of seconds the driver will wait for a response from the database -->
        <setting name="defaultStatementTimeout" value="3000"/>
        <!-- Enables automatic mapping from classic database column names A_COLUMN to camel case classic Java property names aColumn -->
        <setting name="mapUnderscoreToCamelCase" value="true"/>
        <!-- Allows JDBC support for generated keys. A compatible driver is required.
        This setting forces generated keys to be used if set to true,
         as some drivers deny compatibility but still work -->
        <setting name="useGeneratedKeys" value="true"/>
    </settings>

    <!-- Continue editing here -->

</configuration>

  其截图如下所示:

MyBatis plugin (3.154)的安装与使用

  MyBatis plugin除了能够帮助我们自动的生成mybatis的配置文件,方便我们使用外,其还具有一些其它的功能,比如说如下图所示的代码补全功能:

MyBatis plugin (3.154)的安装与使用

注意事项

  这里需要注意的是,MyBatis plugin的最新版本为3.42,在MyBatis plugin中一般是支持MyBatis Generator功能的,但是由于版本回滚的原因,在IDEA中所能下载的最新版本为3.154,而在3.154中,默认是不支持MyBatis Generator功能的,所以说这里就需要我们特别注意了,否则的话不知道的还可能会误以为自己安装的插件有问题或者是其它方面的问题,然后就会在这里耗费大量的时间,这样做是不值得的。

相关标签: mybatis plugin