- spring boot starter
- 注解说明:
- 生成测试接口方法:@Api
- rest控制器:@RestController
- 请求路径注解:@RequestMapping(value = "v1")
- spring
- jdbc Template
- redis端口:6382
- mysql端口:3307
- flyway
- tomcat端口:8078
- 项目启动类:cn.happy.server.app.AppApiMain
- AppApiMain加载所有依赖lib文件
- API文档生成类:cn.happy.server.app.AppApiBuilderMain
- 根据API接口注释自动化提取信息生成接口文档
- 接口文档访问地址:http://localhost:8081/apidoc/index.html
- 自动化生成 Spring Test 类型的测试类 ApiManager
- DAO层生成类:cn.happy.server.app.AppApiDaoBuilder
- 根据db.migration下SQL语句生成的表自动化生成对应的DAO层