🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 项目结构 ~~~ src/main |-> java/com.ytx | |-> common // 框架平台 | | |-> core | | | |-> config // SpringBoot配置类 | | | |-> exception // 全局异常处理、自定义异常 | | | |-> security // SpringSecurity配置 | | | |-> utils // 工具类 | | | |-> annotation // 自定义注解 | | | |-> aspect // 自定义AOP处理 | | | |-> web // 常用核心类, JsonResult、PageParam等 | | | |-> Constants.java // 系统配置常量 | | |-> system // 系统管理模块 | | |-> controller // 控制器 | | |-> entity // 实体类 | | |-> mapper、xml // mapper和xml | | |-> service、impl // service和seviceImpl | |-> YtxWebApplication.java // 启动类 |-> resources |-> static // 静态资源文件 |-> templates // 页面模板文件 |-> application.yml // SpringBoot配置文件 |-> application-dev.yml // 开发环境配置 |-> application-prod.yml // 生产环境配置 |-> application-test.yml // 测试环境配置 ~~~