1.0.0 • Published 1 year ago

generator-mybatis-crud-generator v1.0.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

generator-mybatis-crud-generator NPM version Build Status Dependency Status Coverage percentage

Mybatis crud api generator

Prerequirement

  1. Java JDK 11 or newer (can be an open-jdk distro)
  2. Gradle 2+
  3. NPM
  4. Yeoman
  5. Maven 3+

About this package

This package is a spring-boot crud generator that uses mybatis as the primary class for object and database mapping. The main goal of this package is to speed up the process of crud operations, which can take some time to implement. By installing this package, it can do all the work by creating the crude operation with just one command. Although this package will do everything for crud operation, the developer must be aware of certain limitations, how to use, install, and initiate the application properties, and how to add some dependencies on both Maven and Gredle that the package cannot handle.

Awareness

This package author use Gradle dependency for test, build the project and Intellij as the code editor. For the project to be processed, some of the below gradle dependency elements must be included:

implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.flywaydb:flyway-core'
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:2.2.2'
implementation "org.mapstruct:mapstruct:$mapstructVersion"
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.springframework.data:spring-data-commons:2.7.5'
implementation 'org.projectlombok:lombok:1.18.22'

compileOnly 'org.projectlombok:lombok'
runtimeOnly 'org.postgresql:postgresql'
annotationProcessor 'org.projectlombok:lombok'
annotationProcessor "org.mapstruct:mapstruct-processor:$mapstructVersion"

testImplementation 'org.springframework.boot:spring-boot-starter-test'

*** This is just the gradle that author use be aware that you can modify version or you wish to implement with maven; please want to make sure that the below gradle or maven dependency topics have been install:

  • Lombok
  • SpringWeb
  • Flyway
  • Mybatis
  • MapStruct
  • Postgre (or any database)
  • SpringValidation

* Warning: The configuration of database have to be define by your own as well.

Installation

First, install Yeoman and generator-spring-jpa-crud-generator using npm (we assume you have pre-installed node.js).

npm install -g yo
npm install -g generator-mybatis-crud-generator

Then generate your new project:

yo mybatis-crud-generator

Getting To Know Yeoman

  • Yeoman has a heart of gold.
  • Yeoman is a person with feelings and opinions, but is very easy to work with.
  • Yeoman can be too opinionated at times but is easily convinced not to be.
  • Feel free to learn more about Yeoman.

How to use

  1. Go to your spring boot project directory
  2. Type in command "yo spring-mybatis-crud-generator"
  3. Provide domain of the project. Ex: com.myapi.com
  4. Finally, provide module of your crud. Ex: user

***NOTES: The author use snakeCase as the format when returning the client; therefore you can make your application.properties as "spring.jackson.property-naming-strategy=SNAKE_CASE". Since, in the unit test, the author checking with snake_case strategy, so to make the application test it correctly you can make change in your application.properties to be snake_case or if you wish to use camal_case please change in the unit test to be whatever you wish.

Features

Generation of fully-functional springboot REST API, using:

  • Java 11
  • Spring-boot 2.2 REST API
  • Gredle 2+

Integrations

This generator allows to integrate the springboot REST API with:

  • PostgreSQL
  • Oracle
  • SQL

Functionality

The crud generator will deliver the following:

  • Generate clean architectural crud using OOP and SOLID concepts.
  • ControllerAdvise implementation which will give the global throwable json format
  • Unit Test with RestTemplate

Notes:

By default, we will only provide two basic fields, such as the id and description fields.

​Sample Project using this package

Github: https://github.com/SovathChean/spring-simple-crud-mybatis

License

Apache-2.0 © SovathChean