com.hccake:ballcat-extend-mybatis-plus-mysql

项目基本脚手架

License

License

Categories

Categories

MySQL Data Databases MyBatis ORM
GroupId

GroupId

com.hccake
ArtifactId

ArtifactId

ballcat-extend-mybatis-plus-mysql
Last Version

Last Version

0.0.7
Release Date

Release Date

Type

Type

jar
Description

Description

项目基本脚手架

Download ballcat-extend-mybatis-plus-mysql

How to add to project

<!-- https://jarcasting.com/artifacts/com.hccake/ballcat-extend-mybatis-plus-mysql/ -->
<dependency>
    <groupId>com.hccake</groupId>
    <artifactId>ballcat-extend-mybatis-plus-mysql</artifactId>
    <version>0.0.7</version>
</dependency>
// https://jarcasting.com/artifacts/com.hccake/ballcat-extend-mybatis-plus-mysql/
implementation 'com.hccake:ballcat-extend-mybatis-plus-mysql:0.0.7'
// https://jarcasting.com/artifacts/com.hccake/ballcat-extend-mybatis-plus-mysql/
implementation ("com.hccake:ballcat-extend-mybatis-plus-mysql:0.0.7")
'com.hccake:ballcat-extend-mybatis-plus-mysql:jar:0.0.7'
<dependency org="com.hccake" name="ballcat-extend-mybatis-plus-mysql" rev="0.0.7">
  <artifact name="ballcat-extend-mybatis-plus-mysql" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.hccake', module='ballcat-extend-mybatis-plus-mysql', version='0.0.7')
)
libraryDependencies += "com.hccake" % "ballcat-extend-mybatis-plus-mysql" % "0.0.7"
[com.hccake/ballcat-extend-mybatis-plus-mysql "0.0.7"]

Dependencies

compile (6)

Group / Artifact Type Version
com.hccake : ballcat-extend-mybatis-plus jar
cn.hutool : hutool-all jar
org.projectlombok : lombok Optional jar
org.mapstruct : mapstruct Optional jar
org.mapstruct : mapstruct-processor Optional jar
org.projectlombok : lombok-mapstruct-binding Optional jar

test (2)

Group / Artifact Type Version
org.springframework.boot : spring-boot-starter-test jar
org.springframework.security : spring-security-test jar

Project Modules

There are no modules declared in this project.

BallCat

前言

BallCat 致力于简化开发流程,开箱即用,只需专注于业务开发,避免重复劳作

喜欢的朋友动动小手点个 star 哈,感谢~~ 另外有任何问题欢迎提 issues,或者邮件沟通,也接受通用的功能请求

简介

基于SpringBoot + Ant Design Vue的前后端分离应用。
目前支持代码生成,前后台用户分离,权限控制,定时任务,访问日志,操作日志,异常日志,统一异常处理,XSS过滤,SQL防注入等功能

结构

  • 后端:
.
|-- ballcat-admin
|   |-- ballcat-admin-core          -- 后台管理核心模块(权限控制,字典,Oauth2等)
|   `-- ballcat-admin-websocket     -- 后台管理 websocket 支持插件(公告和字典等同步)
|-- ballcat-codegen             -- 代码生成器
|-- ballcat-common			   
|   |-- ballcat-common-conf		-- web公用配置
|   `-- ballcat-common-core     -- 核心的工具类
|-- ballcat-dependencies        -- ballcat项目本身各子模块的依赖管理,以及第三方模块的依赖管理
|-- ballcat-samples				
|   |-- ballcat-sample-admin-application  -- 集成admin的项目示例(swagger聚合者)
|   |-- ballcat-sample-monitor			  -- SpringBootAdmin监控server端集成示例
|   |-- ballcat-sample-pay			      -- 虚拟货币支付示例
|   `-- ballcat-sample-swagger-provider	  -- 无注册中心的swagger-provider提供示例	
|-- ballcat-starters
|   |-- ballcat-spring-boot-starter-datascope  -- 数据权限控制
|   |-- ballcat-spring-boot-starter-dingtalk   -- 钉钉集成工具
|   |-- ballcat-spring-boot-starter-easyexcel  -- 通过注解快速导出excle(easyexcel)
|   |-- ballcat-spring-boot-starter-job        -- 定时任务集成(目前仅xxl-job)
|   |-- ballcat-spring-boot-starter-kafka      -- 消息队列 kafka 集成
|   |-- ballcat-spring-boot-starter-log		   -- 访问日志,操作日志,TraceId注入
|   |-- ballcat-spring-boot-starter-mail	   -- 邮件发送
|   |-- ballcat-spring-boot-starter-pay	       -- 虚拟货币支付
|   |-- ballcat-spring-boot-starter-redis      -- 提供注解使用redis, 分布式锁,防击穿,全局key前缀等功能
|   |-- ballcat-spring-boot-starter-sms        -- 短信接入 starter
|   |-- ballcat-spring-boot-starter-storage    -- 文件存储(暂时只集成了aliyunOss)
|   |-- ballcat-spring-boot-starter-swagger    -- swagger文档配置(提供无注册中心的文档聚合方案)
|   `-- ballcat-spring-boot-starter-websocket  -- websocket 集成
`-- doc        -- 初始化数据库脚本

  • 前端:
.
|-- public   -- 依赖的静态资源存放
`-- src           
    |-- api      -- 和服务端交互的请求方法
    |-- assets   --  本地静态资源
    |-- ballcat   --  项目定制css和常量
    |-- components  -- 通用组件
    |-- config     -- 框架配置
    |-- core       -- 项目引导, 全局配置初始化,依赖包引入等
    |-- layouts    -- 布局
    |-- locales    -- 国际化
    |-- mixins     -- 增删改查页面的抽取模板
    |-- router     -- 路由相关
    |-- store      -- 数据存储相关
    |-- utils      -- 工具类
    |-- views      -- 页面
    |-- App.Vue    -- Vue 模板入口
    |-- main.js    -- Vue 入口js
    `-- permission.js   -- 路由守卫 权限控制
    

依赖

  • 后端
依赖 版本 官网
Spring Boot 2.4.1 https://spring.io/projects/spring-boot#learn
Spring Security OAuth2 2.3.8.RELEASE https://spring.io/projects/spring-security-oauth
Mybatis Plus 3.4.1 https://mp.baomidou.com/
XXL-JOB 2.2.0 http://www.xuxueli.com/xxl-job
Hutool 5.5.4 https://www.hutool.cn/
  • 前端
依赖 版本 官网
Vue 2.6.10 https://cn.vuejs.org/
Ant Design Vue 1.7.2 https://www.antdv.com
Ant Design Vue Pro 2.0.2 https://pro.loacg.com/

快速开始

开始之前,请先确保您已经配置好以下环境

名称 版本
JDK 1.8
MySQL 5.7.8 +
Redis 3.2 +
node 10.0 +
npm 6.0 +

另:请在您的开发工具中安装好 Lombok 插件

代码下载

  • 后端:

git clone https://github.com/Hccake/ballcat.git

  • 前端:

git clone https://github.com/Hccake/ballcat-ui-vue.git

数据库配置

版本: mysql5.7.8+
默认字符集:utf8mb4
默认排序规则:utf8mb4_general_ci

  • 按下面顺序依次执行/docs目录下的数据库脚本
# 建库语句
scheme.sql   
# 核心库
ballcat.sql  

默认 oauth_client_details 脚本中有一个 test client,该 client 只能用于开发及测试环境,其登陆时会跳过图形验证码以及密码解密过程,生产环境请删除该client

配置本地hosts

建议使用 switchHost 软件管理hosts配置!

也可直接修改本地host文件:
windows系统下host文件位于 C:\Windows\System32\drivers\etc\hosts

新增如下host:

127.0.0.1 ballcat-mysql
127.0.0.1 ballcat-redis
127.0.0.1 ballcat-job
127.0.0.1 ballcat-admin

其中127.0.0.1按需替换成开发环境ip

项目配置修改

  • ballcat-sample-admin-application项目下的src\main\resources\application-dev.yml

    修改数据库账号密码,以及redis密码,若未配置redis密码,则直接留空

    spring:
      datasource:
        url: jdbc:mysql://ballcat-mysql:3306/ballcat?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
        username: root
        password: '123456'
      redis:
        host: ballcat-redis
        password: ''
        port: 6379

请尽量使用host域名形式来配置链接地址,而非直接使用ip

启动项目

  • 后端

直接执行ballcat-sample-admin-application项目下的AdminApplication类的main函数即可。
更多启动项目的方法,请自行查阅spring-boot的多种启动方式

  • 前端

打开命令行进入项目根目录 或 在ide提供的命令行工具中执行如下语句

# 安装依赖
yarn install
# 启动服务
yarn run serve

or

# 安装依赖
npm install
# 启动服务
npm run serve

访问项目

默认前端项目路径:http://localhost:8000/

默认用户名密码:admin/a123456

感谢

BallCat中不少地方都学习了pigx的设计思想,在此感谢 lengleng 大大 pigx微服务开发平台

Versions

Version
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3