# SpringBoot练手 **Repository Path**: myhyperf/spring-boot-practice ## Basic Information - **Project Name**: SpringBoot练手 - **Description**: spring boot练手 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-08-04 - **Last Updated**: 2023-08-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SpringBoot 练手 ``` ____ _ ____ _ ____ _ _ / ___| _ __ _ __(_)_ __ __ _| __ ) ___ ___ | |_ | _ \ _ __ __ _ ___| |_(_) ___ ___ \___ \| '_ \| '__| | '_ \ / _` | _ \ / _ \ / _ \| __| | |_) | '__/ _` |/ __| __| |/ __/ _ \ ___) | |_) | | | | | | | (_| | |_) | (_) | (_) | |_ | __/| | | (_| | (__| |_| | (_| __/ |____/| .__/|_| |_|_| |_|\__, |____/ \___/ \___/ \__| |_| |_| \__,_|\___|\__|_|\___\___| |_| |___/ ``` ## 项目说明 此项目为java练手项目 使用springboot框架完成简易管理后台功能 该项目只提供各功能相关接口,前端项目可以[参考此处](https://gitee.com/bestHeCC/vue-element-admin-practice) 项目集成swagger,如未对项目配置做修改,启动项目后[访问此处](http://localhost:8080/swagger-ui/?urls.primaryName=default)可以查看文档 默认账号:admin,默认密码:123456 ## 开发环境 1. java版本:18.0.2 * Spring Boot版本:2.7.2 2. mysql:8.0 3. redis:5.0.3 ## 目录结构 ~~~ src ├─main │ ├─java │ │ ├─com.example.springboot │ │ │ ├─config 配置相关 │ │ │ ├─controller 控制器 │ │ │ ├─dao 数据库操作接口 │ │ │ ├─dto 传输层 │ │ │ ├─entity model实体 │ │ │ ├─enums 枚举 │ │ │ ├─interceptor 拦截器 │ │ │ ├─service 业务层 │ │ │ ├─tools 工具类 │ │ │ └─Application.java │ ├─resources │ │ ├─mapper 数据库操作实现 │ │ ├─static │ │ ├─templates │ │ └─application.yml 配置文件 ├─test ├─SpringBoot.sql 基础数据 ~~~