1 Star 1 Fork 1

THM / T-FAST

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
Apache-2.0

T-FAST

简介

T-FAST是一款基于SpringBoot+MyBatis-Plus的快速开发脚手架,拥有完整的权限管理功能,可对接Vue前端,开箱即用。

前端项目

该项目为前后端分离项目的后端部分,前端项目T-FAST-WEB地址:https://gitee.com/Thmspring/t-fast-web

在线演示地址

技术选型

技术 版本 说明
SpringBoot 2.7.0 容器+MVC框架
SpringSecurity 5.7.1 认证和授权框架
MyBatis 3.5.4 ORM框架
MyBatis-Plus 3.5.2 MyBatis增强工具
MyBatis-Plus Generator 3.5.2 数据层代码生成器
Swagger-UI 3.0.0 文档生产工具
MySql 8.0.31 关系数据库
Redis 6.2.7 分布式缓存
Docker 20.10.17 应用容器引擎
Druid 1.1.10 数据库连接池
Hutool 5.8.8 Java工具类库
JWT 0.9.0 JWT登录支持
Lombok 1.18.24 简化对象封装工具
minio 8.4.2 oss对象存储
JDK 17.0.4.1 JDK

表结构

环境搭建

简化依赖服务,只需安装最常用的MySql和Redis服务即可

开发规约

项目包结构

src
├── core                                      -- 系统核心
|   ├── annotation                            -- 相关注解
|   ├── aspect                                -- 相关切面
|   ├── config                                -- 相关配置
|   ├── constant                              -- 常量信息
|   ├── entity                                -- 公共实体
|   ├── enums                                 -- 枚举信息
|   ├── exception                             -- 全局异常处理相关类
|   ├── generator                             -- MyBatis-Plus代码生成器
|   ├── oss                                   -- 对象存储
|   ├── service                               -- 通用业务类
|   ├── security                              -- SpringSecurity认证授权相关代码
|   ├── task                                  -- 定时任务
|   |   ├── base                              -- 抽象定时任务父类以及注册器
|   |   └── job                               -- 具体定时任务
|   └── utils                                 -- 通用工具类
├── modules                                   -- 存放业务代码的基础包
|   └── sys                                   -- 系统管理模块业务代码
|       ├── controller                        -- 该模块相关接口
|       ├── mapper                            -- 该模块相关Mapper接口
|       ├── model                             -- 该模块相关实体类
|       |   ├── dto                           -- 该模块相关请求实体
|       |   └── vo                            -- 该模块相关响应实体
|       └── service                           -- 该模块相关业务处理类

资源文件说明

resources
├── log                                 -- Logback日志配置文件
├── mapper                              -- MyBatis中mapper.xml存放位置
├── application.yml                     -- SpringBoot通用配置文件
├── application-dev.yml                 -- SpringBoot开发环境配置文件
├── application-prod.yml                -- SpringBoot生产环境配置文件
└── generator.properties                -- MyBatis-Plus代码生成器配置

接口定义规则

描述 method path
分页查询数据 GET /{控制器路由名称}/page
获取数据列表 GET /{控制器路由名称}/list
获取指定记录详情 GET /{控制器路由名称}/{id}
新增数据 POST /{控制器路由名称}/insert
修改数据 PUT /{控制器路由名称}/update
删除数据 DELETE /{控制器路由名称}/delete/{id}

项目运行

直接运行启动类TFastApplicationmain函数

业务代码开发流程

创建业务表

示例:创建好sys模块的所有表,需要注意的是一定要写好表字段的注释,这样实体类和接口文档中就会自动生成字段说明了。

使用代码生成器

运行MyBatisPlusGenerator类的main方法来生成代码,可直接生成controller、service、mapper、model、mapper.xml的代码,无需手动创建。

  • 代码生成器支持两种模式,一种生成单表的代码,比如只生成sys_dict表代码可以先输入模块名称sys,后输入sys_dict
  • 生成代码结构预览
  • 直接生成整个模块代码,比如生成sys模块代码,先输入模块名称sys,再输入表通配sys_*

编写业务代码

参数定义与校验

  • 请求参数

    请求参数统一定义在该模块下的model/dto

    • 新增参数格式:xxxInsertDto

      @Data
      @EqualsAndHashCode(callSuper = false)
      public class MenuInsertDto {
      
        @ApiModelProperty(value = "父级ID 0-表示没有父级 ")
        private Long parentId;
      
        @ApiModelProperty(value = "菜单标题", required = true)
        @NotEmpty(message = "菜单标题不能为空")
        @Size(max = 12, message = "菜单标题不能超过12位")
        private String title;
      
        @ApiModelProperty(value = "菜单排序")
        private Integer sort;
      
        @ApiModelProperty(value = "前端路径", required = true)
        @NotEmpty(message = "菜单标题不能为空")
        @Size(max = 36, message = "菜单标题不能超过36位")
        private String path;
      
        @ApiModelProperty(value = "前端图标")
        private String icon;
      
        @ApiModelProperty(value = "前端隐藏 0-隐藏  1-显示")
        private Integer hidden;
      }
    • 修改参数格式:xxxUpdateDto

      @Data
      @EqualsAndHashCode(callSuper = false)
      public class MenuUpdateDto {
      
          @ApiModelProperty(value = "菜单ID", required = true)
          @NotNull(message = "菜单ID不能为空")
          private Long id;
      
          @ApiModelProperty(value = "父级ID 0-表示没有父级 ")
          private Long parentId;
      
          @ApiModelProperty(value = "菜单标题")
          @Size(max = 12, message = "菜单标题不能超过12位")
          private String title;
      
          @ApiModelProperty(value = "菜单层级")
          private Integer level;
      
          @ApiModelProperty(value = "菜单排序")
          private Integer sort;
      
          @ApiModelProperty(value = "前端路径")
          @Size(max = 36, message = "前端路径不能超过36位")
          private String path;
      
          @ApiModelProperty(value = "前端图标")
          private String icon;
      
          @ApiModelProperty(value = "前端隐藏 0-隐藏  1-显示")
          private Integer hidden;
      
          @ApiModelProperty(value = "删除标识 0-删除 1-未删除")
          private Integer delFlag;
      }
    • 参数校验

      接口中添加@Validated注解开启参数校验功能即可。

       @RestController
       @Api(tags = "系统:菜单管理")
       @RequestMapping("/sysMenu")
       public class SysMenuController {
      
           @Resource
           private SysMenuService sysMenuService;
      
           @ApiOperation("新增菜单信息")
           @PostMapping("/insert")
           public ViewResult<Long> insert(@Validated @RequestBody MenuInsertDto dto){
               return ViewResult.success(sysMenuService.insert(dto));
           }
      
           @ApiOperation("修改菜单信息")
           @PutMapping("/update")
           public ViewResult<String> update(@Validated @RequestBody MenuUpdateDto dto) {
               boolean success = sysMenuService.update(dto);
               if (success) {
                   return ViewResult.success();
               }
               return ViewResult.error();
           }
      }

单表操作

由于MyBatis-Plus提供的增强功能相当强大,单表查询几乎不用手写SQL,直接使用ServiceImpl和BaseMapper中提供的方法即可。

比如我们的菜单管理业务实现类UmsMenuServiceImpl中的方法都直接使用了这些方法。

@Service
public class SysDictServiceImpl extends ServiceImpl<SysDictMapper, SysDict> implements SysDictService {

    @Resource
    private SysDictItemService sysDictItemService;

    @Override
    public Page<SysDict> page(String keyword, Integer pageNum, Integer pageSize) {
        Page<SysDict> page = new Page<>(pageNum, pageSize);
        LambdaQueryWrapper<SysDict> wrapper = Wrappers.lambdaQuery();
        if (StrUtil.isNotEmpty(keyword)) {
            wrapper.like(SysDict::getType, keyword)
                    .or()
                    .like(SysDict::getName, keyword);
        }
        wrapper.ne(SysDict::getDelFlag, DeleteFlagEnum.DELETED.getCode());
        return this.page(page, wrapper);
    }

    @Override
    @Transactional
    public Long insert(DictInsertDto dto) {
        SysDict sysDict = this.getOne(Wrappers
                .<SysDict>lambdaQuery()
                .eq(SysDict::getType, dto.getType()));
        if (Objects.nonNull(sysDict)){
            Asserts.fail("字典已经存在");
        }
        sysDict = BeanUtil.toBean(dto,SysDict.class);
        SysUserDetails currentUser = SecurityUtil.getCurrentUser();
        sysDict.setCreateUser(currentUser.getUserId());
        sysDict.setCreateTime(currentUser.getDate());
        sysDict.setUpdateUser(currentUser.getUserId());
        sysDict.setUpdateTime(currentUser.getDate());
        this.save(sysDict);
        return sysDict.getId();
    }

    @Override
    @Transactional
    public Boolean update(DictUpdateDto dto) {
        if (Objects.isNull(this.getById(dto.getId()))){
            Asserts.fail("字典信息不存在");
        }
        SysDict sysDict = this.getOne(Wrappers
                .<SysDict>lambdaQuery()
                .eq(SysDict::getType, dto.getType())
                .ne(SysDict::getId, dto.getId()));
        if (Objects.nonNull(sysDict)){
            Asserts.fail(dto.getType() + "字典已经存在");
        }
        sysDict = BeanUtil.toBean(dto, SysDict.class);
        //修改字典类型,同时修改字典项信息
        if (StrUtil.isNotEmpty(sysDict.getType())){
            sysDictItemService.update(Wrappers
                    .<SysDictItem>lambdaUpdate()
                    .set(SysDictItem::getType,sysDict.getType())
                    .eq(SysDictItem::getDictId,sysDict.getId()));
        }
        SysUserDetails currentUser = SecurityUtil.getCurrentUser();
        sysDict.setUpdateUser(currentUser.getUserId());
        sysDict.setUpdateTime(currentUser.getDate());
        //删除字典相关缓存
        sysDictItemService.delDictCache(sysDict.getType());
        return this.updateById(sysDict);
    }

    @Override
    @Transactional
    public Boolean delete(Long dictId) {
        SysDict sysDict = this.getById(dictId);
        if (Objects.isNull(sysDict)){
            Asserts.fail("字典信息不存在");
        }
        int count = sysDictItemService.count(Wrappers
                .<SysDictItem>lambdaQuery()
                .eq(SysDictItem::getDictId, dictId)
                .eq(SysDictItem::getDelFlag,DeleteFlagEnum.UNDELETE.getCode()));
        if (count != 0){
            Asserts.fail("存在字典项信息,不能删除字典信息");
        }
        SysUserDetails currentUser = SecurityUtil.getCurrentUser();
        sysDict.setUpdateUser(currentUser.getUserId());
        sysDict.setUpdateTime(currentUser.getDate());
        sysDict.setDelFlag(DeleteFlagEnum.DELETED.getCode());
        //删除与菜单相关缓存
        sysDictItemService.delDictCache(sysDict.getType());
        return this.updateById(sysDict);
    }
}

分页查询

对于分页查询MyBatis-Plus原生支持,不需要再整合其他插件,直接构造Page对象,然后调用ServiceImpl中的page方法即可。

  • 单表分页查询
    @Service
    public class SysDictServiceImpl extends ServiceImpl<SysDictMapper, SysDict> implements SysDictService {
    
      @Resource
      private SysDictItemService sysDictItemService;
    
      @Override
      public Page<SysDict> page(String keyword, Integer pageNum, Integer pageSize) {
        Page<SysDict> page = new Page<>(pageNum, pageSize);
        LambdaQueryWrapper<SysDict> wrapper = Wrappers.lambdaQuery();
        if (StrUtil.isNotEmpty(keyword)) {
          wrapper.like(SysDict::getType, keyword)
                  .or()
                  .like(SysDict::getName, keyword);
        }
        wrapper.ne(SysDict::getDelFlag, DeleteFlagEnum.DELETED.getCode());
        return this.page(page, wrapper);
      }
    }
  • 多表分页查询
    • service
        @Service
        public class SysLogServiceImpl extends ServiceImpl<SysLogMapper, SysLog> implements SysLogService {
      
          @Resource
          private SysUserService sysUserService;
      
          @Override
          public Page<LogVo> page(String keyword, Integer type, Integer pageNum, Integer pageSize) {
              Page<LogVo> page = new Page<>(pageNum,pageSize);
              List<LogVo> logVos = this.baseMapper.page(keyword, type, page);
              page.setRecords(logVos);
              return page;
          }
        }
    • mapper
      public interface SysLogMapper extends BaseMapper<SysLog> {
      
      /**
       * 根据条件分页获取日志列表
       * @param keyword  关键字:日志标题
       * @param type     日志类型
       * @param iPage  分页参数
       * @return
       */
      List<LogVo> page(@Param("keyword") String keyword,
                       @Param("type") Integer type,
                       IPage<LogVo> iPage);
      
      }
    • xml
      <select id="page" resultType="com.tfast.modules.sys.model.vo.log.LogVo">
          select
          a.id,
          a.type,
          a.title,
          a.ip,
          a.url,
          a.method,
          a.agent,
          a.params,
          a.time,
          a.exception,
          a.create_time as createTime,
          a.create_user as createUser,
          b.user_name as createUserName
          from sys_log a
          join sys_user b on a.create_user = b.id
          <where>
              <if test="keyword != null and keyword !=''">
                  and a.title like concat(#{keyword},'%')
              </if>
              <if test="type != null">
                  and a.type = #{type}
              </if>
          </where>
      </select>

多表查询

对于多表查询,我们需要手写mapper.xml中的SQL实现,由于之前我们已经生成了mapper.xml文件,所以我们直接在Mapper接口中定义好方法,然后在mapper.xml写好SQL实现即可。

  • 比如说我们需要写一个根据用户ID获取其分配的权限的方法,首先我们在SysPermissionMapper接口中添加好getPermissionByUserId方法
    public interface SysPermissionMapper extends BaseMapper<SysPermission> {
      /**
       * 通过用户ID获取权限集合
       * @param userId 用户ID
       * @return 权限集合
       */
      List<SysPermission> getPermissionByUserId(Long userId);
    }
  • 然后在SysPermissionMapper.xml添加该方法的对应SQL实现即可。
    <select id="getPermissionByUserId" parameterType="java.lang.Long" resultMap="BaseResultMap">
          select distinct a.id,
                          a.permission,
                          a.description,
                          a.del_flag,
                          a.create_time,
                          a.create_user,
                          a.update_time,
                          a.update_user
          from sys_permission a
                   join sys_role_permission b on a.id = b.permission_id
                   join sys_user_role c on b.role_id = c.role_id and c.user_id = #{userId}
          where a.del_flag != 0
    </select>

定时任务

项目已经提供定时任务模板,也可以自行实现

  • 创建定时任务如SimpleTask并继承AbstractTask
    @Slf4j
    @Component
    public class SimpleTask extends AbstractTask {
    
    
      @Override
      @PostConstruct
      public void init(AbstractTask task) {
          super.init(this);
      }
    
      @Override
      @Scheduled(cron = "0/5 * * * * ?")
      public void execute() {
          try {
              log.info("简单的定时任务!!!!");
              status = 1;
          } catch (Exception e){
              status = 2;
              log.error("任务运行异常,e={}",e.getMessage());
          }
      }
    
      @Override
      public String getTaskName() {
          return SimpleTask.class.getSimpleName();
      }
    
      @Override
      public String getDesc() {
          return "示例定时任务";
      }
    
      @Override
      public Integer getStatus() {
          return status;
      }
      }

接口权限

项目采用动态接口权限,无需编码只需要添加接口资源配置即可达到权限控制目地,灵活多变!

配置方法

  • 直接操作数据表:sys_resource

  • 通过前端资源管理进行添加

配置示例

项目接口采用restful风格,有一定要求具体参考以下示例

  • GET请求配置

    • 示例接口:/sysOrganization/page

    • 示例接口:/sysOrganization/{orgId}

      请求接口带ID或者其他参数配置时只需要写前缀即可,无须写上{XXX}

  • POST请求配置

    • 示例接口:/sysOrganization/insert
  • PUT请求配置

    • 示例接口:/sysOrganization/update
  • DELETE请求配置

    • 示例接口:/sysOrganization/delete/{orgId}

项目部署

项目采用docker容器化部署,非docker环境请求自行部署

  • 部署环境准备 项目依赖环境docker-compose.yml已经提供 路径:https://gitee.com/Thmspring/t-fast/blob/master/doc/docker/environment/docker-compose.yml
    docker-compose -f docker-compose.yml up -d
  • jar部署
    • 项目采用DockerFile部署已经编写完整的部署脚本,结果如下:
    • apps:存在配置文件和运行jar
    • app.env:配置jar名称(影响apps目录下jar包名称)、jvm参数、引用配置文件(影响apps目录下配置文件)
    • docker-compose.yml:配置启动容器名称、Dockerfile、映射容器卷等
    • Dockerfile:定义容器工作目录、启动运行脚本
    • entrypoint.sh:容器启动后运行脚本
    • global.env:全局配置(如果没有app.env则此配置文件生效)
    • 部署步骤
      1. 进入服务器创建服务目录如:deploy
         mkdir deploy
      2. 进入目录创建apps文件夹并上传相关文件
         cd deploy
         # 上传:app.env、docker-compose.yml、Dockerfile、entrypoint.sh、global.env
         mkdir apps
         cd apps
         # 上传:application-prod.yml、t-fast.jar
      3. 启动容器
        cd deploy
        # 启动
        docker-compose -f docker-compose.yml up -d
        # 停止
        docker-compose -f docker-compose.yml down
        # 查看日志
        docker logs -f t-fast
        # 查看映射日志
        cd logs
        tail -f t-fast.log
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

简介

T-FAST是一款基于SpringBoot+MyBatis-Plus的快速开发脚手架,拥有完整的权限管理功能,可对接Vue前端,开箱即用。 展开 收起
Java
Apache-2.0
取消

发行版 (1)

全部

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Thmspring/t-fast.git
git@gitee.com:Thmspring/t-fast.git
Thmspring
t-fast
T-FAST
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891