diff --git a/README.md b/README.md
index f8dd8b6a..fceb525f 100644
--- a/README.md
+++ b/README.md
@@ -21,13 +21,12 @@ eladmin基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前
| | 后端源码 | 前端源码 |
|--- |--- | --- |
-| github | https://github.com/elunez/eladmin | https://github.com/elunez/eladmin-qd |
-| 码云 | https://gitee.com/elunez/eladmin | https://gitee.com/elunez/eladmin-qt |
+| github | https://github.com/elunez/eladmin | https://github.com/elunez/eladmin-web |
+| 码云 | https://gitee.com/elunez/eladmin | https://gitee.com/elunez/eladmin-web |
#### 系统功能
- 用户管理:提供用户的相关配置,新增用户后,默认密码为123456
- 角色管理:对权限与菜单进行分配,可根据部门设置角色的数据权限
-- 权限管理:权限细化到接口,可以理解成按钮权限
- 菜单管理:已实现菜单动态路由,后端可配置化,支持多级菜单
- 部门管理:可配置系统组织架构,树形表格展示
- 岗位管理:配置各个部门的职位
@@ -44,16 +43,19 @@ eladmin基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前
- 支付宝支付:整合了支付宝支付并且提供了测试账号,可自行测试
#### 项目结构
-项目采用分模块开发方式,将通用的配置放在公共模块,```system```模块为系统核心模块也是项目入口模块,```logging``` 模块为系统的日志模块,```tools``` 为第三方工具模块,包含了图床、邮件、七牛云、支付宝,```generator``` 为系统的代码生成模块
+项目采用按功能分模块开发方式,将通用的配置放在公共模块,```system```模块为系统核心模块也是项目入口模块,```logging``` 模块为系统的日志模块,```tools``` 为第三方工具模块,包含了图床、邮件、七牛云、支付宝,```generator``` 为系统的代码生成模块
+
- eladmin-common 公共模块
- - exception 项目统一异常的处理
- - mapper mapstruct的通用mapper
- - redis redis缓存相关配置
- - swagger2 接口文档配置
- - utils 系统通用工具类
+ - annotation 为系统自定义注解
+ - aspect 自定义注解的切面
+ - base 提供了Entity、DTO基类和mapstruct的通用mapper
+ - config 自定义权限实现、redis配置、swagger配置
+ - exception 项目统一异常的处理
+ - utils 系统通用工具类
- eladmin-system 系统核心模块(系统启动入口)
- - config 配置跨域与静态资源,与数据权限
- - modules 系统相关模块(登录授权、定时任务等)
+ - config 配置跨域与静态资源,与数据权限
+ - thread 线程池相关
+ - modules 系统相关模块(登录授权、系统监控、定时任务等)
- eladmin-logging 系统日志模块
- eladmin-tools 系统第三方工具模块
- eladmin-generator 系统代码生成模块
@@ -78,6 +80,6 @@ eladmin基于 Spring Boot 2.1.0 、 Jpa、 Spring Security、redis、Vue的前
#### 项目捐赠
-项目的发展离不开你的支持,请作者喝杯咖啡吧 ☕! [Donate](https://docs.auauz.net/#/jz)
+项目的发展离不开你的支持,请作者喝杯咖啡吧!ps:辣条也行 ☕! [Donate](https://docs.auauz.net/#/jz)
#### 反馈交流
- QQ交流群:891137268
diff --git a/eladmin-common/pom.xml b/eladmin-common/pom.xml
index af94c4df..0bdd114f 100644
--- a/eladmin-common/pom.xml
+++ b/eladmin-common/pom.xml
@@ -5,11 +5,10 @@
eladmin
me.zhengjie
- 2.2
+ 2.3
4.0.0
eladmin-common
公共模块
-
\ No newline at end of file
diff --git a/eladmin-common/src/main/java/me/zhengjie/annotation/AnonymousAccess.java b/eladmin-common/src/main/java/me/zhengjie/annotation/AnonymousAccess.java
new file mode 100644
index 00000000..46d5ab0c
--- /dev/null
+++ b/eladmin-common/src/main/java/me/zhengjie/annotation/AnonymousAccess.java
@@ -0,0 +1,16 @@
+package me.zhengjie.annotation;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * @author jacky
+ * 用于标记匿名访问方法
+ */
+@Target(ElementType.METHOD)
+@Retention(RetentionPolicy.RUNTIME)
+public @interface AnonymousAccess {
+
+}
diff --git a/eladmin-common/src/main/java/me/zhengjie/annotation/Query.java b/eladmin-common/src/main/java/me/zhengjie/annotation/Query.java
index dc394b82..0a583390 100644
--- a/eladmin-common/src/main/java/me/zhengjie/annotation/Query.java
+++ b/eladmin-common/src/main/java/me/zhengjie/annotation/Query.java
@@ -13,45 +13,42 @@ import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
public @interface Query {
- /** Dong ZhaoYang 2017/8/7 基本对象的属性名 */
+ // Dong ZhaoYang 2017/8/7 基本对象的属性名
String propName() default "";
- /** Dong ZhaoYang 2017/8/7 查询方式 */
+ // Dong ZhaoYang 2017/8/7 查询方式
Type type() default Type.EQUAL;
/**
* 连接查询的属性名,如User类中的dept
- * @return
*/
String joinName() default "";
/**
* 默认左连接
- * @return
*/
Join join() default Join.LEFT;
/**
* 多字段模糊搜索,仅支持String类型字段,多个用逗号隔开, 如@Query(blurry = "email,username")
- * @return
*/
String blurry() default "";
enum Type {
- /** jie 2019/6/4 相等 */
+ // jie 2019/6/4 相等
EQUAL
- /** Dong ZhaoYang 2017/8/7 大于等于 */
+ // Dong ZhaoYang 2017/8/7 大于等于
, GREATER_THAN
- /** Dong ZhaoYang 2017/8/7 小于等于 */
+ // Dong ZhaoYang 2017/8/7 小于等于
, LESS_THAN
- /** Dong ZhaoYang 2017/8/7 中模糊查询 */
+ // Dong ZhaoYang 2017/8/7 中模糊查询
, INNER_LIKE
- /** Dong ZhaoYang 2017/8/7 左模糊查询 */
+ // Dong ZhaoYang 2017/8/7 左模糊查询
, LEFT_LIKE
- /** Dong ZhaoYang 2017/8/7 右模糊查询 */
+ // Dong ZhaoYang 2017/8/7 右模糊查询
, RIGHT_LIKE
- /** Dong ZhaoYang 2017/8/7 小于 */
+ // Dong ZhaoYang 2017/8/7 小于
, LESS_THAN_NQ
- //** jie 2019/6/4 包含 */
+ // jie 2019/6/4 包含
, IN
}
diff --git a/eladmin-common/src/main/java/me/zhengjie/aspect/LimitAspect.java b/eladmin-common/src/main/java/me/zhengjie/aspect/LimitAspect.java
index 555774c7..b8b6cf9f 100644
--- a/eladmin-common/src/main/java/me/zhengjie/aspect/LimitAspect.java
+++ b/eladmin-common/src/main/java/me/zhengjie/aspect/LimitAspect.java
@@ -12,7 +12,6 @@ import org.aspectj.lang.annotation.Pointcut;
import org.aspectj.lang.reflect.MethodSignature;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.script.DefaultRedisScript;
import org.springframework.data.redis.core.script.RedisScript;
@@ -23,10 +22,13 @@ import java.lang.reflect.Method;
@Aspect
@Component
public class LimitAspect {
- @Autowired
- private RedisTemplate redisTemplate;
+
+ private final RedisTemplate