com.github.zw201913:mysql-limit-page-plugin

file upload

Лицензия

Лицензия

Категории

Категории

MySQL Данные Базы данных
Группа

Группа

com.github.zw201913
Идентификатор

Идентификатор

mysql-limit-page-plugin
Последняя версия

Последняя версия

1.0.1
Дата

Дата

Тип

Тип

jar
Описание

Описание

com.github.zw201913:mysql-limit-page-plugin
file upload
Ссылка на сайт

Ссылка на сайт

https://github.com/zw201913/fileupload
Система контроля версий

Система контроля версий

https://github.com/zw201913/mysql-limit-page-plugin

Скачать mysql-limit-page-plugin

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.zw201913/mysql-limit-page-plugin/ -->
<dependency>
    <groupId>com.github.zw201913</groupId>
    <artifactId>mysql-limit-page-plugin</artifactId>
    <version>1.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.zw201913/mysql-limit-page-plugin/
implementation 'com.github.zw201913:mysql-limit-page-plugin:1.0.1'
// https://jarcasting.com/artifacts/com.github.zw201913/mysql-limit-page-plugin/
implementation ("com.github.zw201913:mysql-limit-page-plugin:1.0.1")
'com.github.zw201913:mysql-limit-page-plugin:jar:1.0.1'
<dependency org="com.github.zw201913" name="mysql-limit-page-plugin" rev="1.0.1">
  <artifact name="mysql-limit-page-plugin" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.zw201913', module='mysql-limit-page-plugin', version='1.0.1')
)
libraryDependencies += "com.github.zw201913" % "mysql-limit-page-plugin" % "1.0.1"
[com.github.zw201913/mysql-limit-page-plugin "1.0.1"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.mybatis.generator : mybatis-generator-core jar 1.3.5

Модули Проекта

Данный проект не имеет модулей.

mysql-limit-page-plugin

mybatis generator分页插件

第一步:把pom.xml中配置maven插件

<plugin>
    <groupId>org.mybatis.generator</groupId>
    <artifactId>mybatis-generator-maven-plugin</artifactId>
    <version>1.3.5</version>
    <configuration>
        <verbose>true</verbose>
        <overwrite>true</overwrite>
    </configuration>
    <dependencies>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.41</version>
        </dependency>
        <dependency>
            <groupId>com.github.zw201913</groupId>
            <artifactId>mysql-limit-page-plugin</artifactId>
            <version>1.0.1</version>
        </dependency>
     </dependencies>
 </plugin>

第二步:添加generatorConfig.xml配置文件

   1.下载或拷贝 https://github.com/zw201913/mysql-limit-page-plugin/tree/master/src/main/resources 里面的generatorConfig.xml配置文件

  2.将配置文件放在src/main/resources下面,名字要保持一致

  3.按照mybatis generator的规范修改里面的generatorConfig.xml,使配置文件符合自身项目的实际情况

  4.配置完毕后,使用maven命令  mybatis-generator:generate  即可自动生成mybatis分页代码

Версии библиотеки

Версия
1.0.1