# smart_trace **Repository Path**: i_sxt/smart_trace ## Basic Information - **Project Name**: smart_trace - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-23 - **Last Updated**: 2021-04-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 项目搭建后期事项 ### ·数据库建表 1. 根据上次修改讨论结果进行数据库表的创建 2. 数据库连接信息: ``ip: 47.98.244.28`` `` port: 3306`` `` username: smart_trace`` ``password: smart_trace_173148`` 3. 数据库表名: `smart_trace` ### ·建表后使用项目中已经存在的代码生成器进行mapper等的生成 1. 代码存放位置:`com.sicau.smarttraceplatform.generator.CodeGenerator` 2. 具体位置: 2020/5/23 数据库表名的补充 strategy.setInclude ``` public class CodeGenerator { ... // 策略配置 StrategyConfig strategy = new StrategyConfig(); strategy.setNaming(NamingStrategy.underline_to_camel); strategy.setColumnNaming(NamingStrategy.underline_to_camel); strategy.setEntityLombokModel(true); strategy.setRestControllerStyle(true); // TODO: 2020/5/23 数据库表名的补充 strategy.setInclude("xxx,xxx,xxx".split(",")); strategy.setControllerMappingHyphenStyle(true); ... } ``` #### ·参照原来项目使用apollo配置中心承载了部分配置 1. 后台客户端地址: `http://47.98.244.28:8070/signin` 2. 用户名: `ttxxi` 密码: `123456` #### ·redis服务地址 - ip: 47.98.244.28 - port: 6379 - password: sxt_173148