# spring-boot-mybatis-generator-template **Repository Path**: daileyet/spring-boot-mybatis-generator-template ## Basic Information - **Project Name**: spring-boot-mybatis-generator-template - **Description**: Springboot with mybatis and mybatis generator - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-25 - **Last Updated**: 2022-05-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # spring-boot-mybatis-generator-template Springboot with mybatis and mybatis generator https://start.spring.io/ ## Features 1. Spring boot web, json support 2. Spring boot mybatis 3. Mybatis generator plugins 4. JSON converter and property configurable 5. add ant build for shell script and install zip ## Convert jar to war ### pom.xml ```xml org.springframework.boot spring-boot-starter-tomcat provided ``` ### SpringBootServletInitializer ```java public class SpringBootMybatisGeneratorTemplateApplication extends SpringBootServletInitializer{ public static void main(String[] args) { SpringApplication.run(SpringBootMybatisGeneratorTemplateApplication.class, args); } @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { return builder.sources(SpringBootMybatisGeneratorTemplateApplication.class); } } ``` ```shell # compile and install mvn clean install -Dpackaging.style=war ``` ## Template projects ### Quick template projects ```shell git clone -b template-quick https://github.com/daileyet/spring-boot-mybatis-generator-template.git ```