From 1d03c93a0fb14a7f383c5bf7e0b0d56fca796c27 Mon Sep 17 00:00:00 2001 From: lihengming <89921218@qq.com> Date: Wed, 28 Jun 2017 18:55:39 +0800 Subject: [PATCH] update > the document --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 967c935..7439c59 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Spring Boot API Project Seed 是一个基于Spring Boot & MyBatis的种子项目 - 简单的接口签名认证 - 常用基础方法抽象封装 - 使用Druid Spring Boot Starter 集成Druid连接池与监控 -- 使用FastJsonHttpMessageConverter,提高Json序列化速度 +- 使用FastJsonHttpMessageConverter,提高JSON序列化速度 - 集成MyBatis、通用Mapper插件、PageHelper分页插件,实现单表业务零SQL - 提供代码生成器根据表名生成对应的Model、Mapper、MapperXML、Service、ServiceImpl、Controller等基础代码,其中Controller模板默认提供POST和RESTful两套,根据需求在```CodeGenerator.genController(tableName)```方法中自己选择,默认使用POST模板。代码模板可根据实际项目的需求来扩展,由于每个公司业务都不太一样,所以只提供了一些比较基础、通用的模板,主要是提供一个思路来减少重复代码的编写,在我们公司的使用中,其实根据业务的抽象编写了大量的代码模板 - 另有彩蛋,待你探索