mybatis-max

Mybatis-Max is an automatic injection SQL toolkit based on Mybatis.

Лицензия

Лицензия

Категории

Категории

MyBatis Данные ORM
Группа

Группа

cloud.gouyiba
Идентификатор

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

mybatis-max
Последняя версия

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

1.0.5-RELEASE
Дата

Дата

Тип

Тип

pom
Описание

Описание

mybatis-max
Mybatis-Max is an automatic injection SQL toolkit based on Mybatis.
Ссылка на сайт

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

https://github.com/gouyiba/mybatis-max
Организация-разработчик

Организация-разработчик

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

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

https://github.com/gouyiba/mybatis-max

Скачать mybatis-max

Имя Файла Размер
mybatis-max-1.0.5-RELEASE.pom 6 KB
Обзор

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

<!-- https://jarcasting.com/artifacts/cloud.gouyiba/mybatis-max/ -->
<dependency>
    <groupId>cloud.gouyiba</groupId>
    <artifactId>mybatis-max</artifactId>
    <version>1.0.5-RELEASE</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/cloud.gouyiba/mybatis-max/
implementation 'cloud.gouyiba:mybatis-max:1.0.5-RELEASE'
// https://jarcasting.com/artifacts/cloud.gouyiba/mybatis-max/
implementation ("cloud.gouyiba:mybatis-max:1.0.5-RELEASE")
'cloud.gouyiba:mybatis-max:pom:1.0.5-RELEASE'
<dependency org="cloud.gouyiba" name="mybatis-max" rev="1.0.5-RELEASE">
  <artifact name="mybatis-max" type="pom" />
</dependency>
@Grapes(
@Grab(group='cloud.gouyiba', module='mybatis-max', version='1.0.5-RELEASE')
)
libraryDependencies += "cloud.gouyiba" % "mybatis-max" % "1.0.5-RELEASE"
[cloud.gouyiba/mybatis-max "1.0.5-RELEASE"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.projectlombok : lombok Необязательный jar 1.18.10
org.slf4j : slf4j-api Необязательный jar 1.7.25
com.github.ulisesbocchio : jasypt-spring-boot-starter Необязательный jar 2.1.0

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

  • mybatis-max-common
  • mybatis-max-core
  • mybatis-max-boot-starter

MyBatis-Max

Maven Central GitHub release License Gitpod Ready-to-Code Issues

What is MyBatis-Max?

Mybatis Max is to simplify and solve the tedious development work of the data layer based on Mybatis, greatly improve the development efficiency, and enable developers to focus on the implementation of the Service business, and do not need to spend too much energy on the development of the data layer.

Get Step

  • Add MyBatis-Max dependency

    • Maven:
      <dependency>
          <groupId>cloud.gouyiba</groupId>
          <artifactId>mybatis-max-boot-starter</artifactId>
          <version>1.0.5-RELEASE</version>
      </dependency>
    • Gradle:
      compile group: 'cloud.gouyiba', name: 'mybatis-max-boot-starter', version: '1.0.5-RELEASE'
  • Modify mapper file(extends BaseMapper interface)

    public interface AccountMapper extends BaseMapper<Account> {
    
    }
  • Use it

    • Example Code:
      @Resource
      private AccountMapper accountMapper;
      
      public void getMybatisMaxFunction() {
          accountMapper.selectById();
          
          accountMapper.selectOne();
          
          accountMapper.insert();
          
          accountMapper.update();
          
          accountMapper.updateById();
          
          accountMapper.delete();
          
          // accountMapper.method()......
      }
    • All the injection methods provided in BaseMapper are accessible through an AccountMapper agent instance

Dependency

Please see this [China Maven Download Page] for more repository infos.

Welcome

We invite interested people to join our gouyiba development team communicate together and let us know by sending an issue.

License

MyBatis-Max is released under the Apache 2.0 license.

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

Версия
1.0.5-RELEASE
1.0.4-RELEASE
1.0.3-RELEASE