Commit Graph

79 Commits

Author SHA1 Message Date
Jie Zheng
c31dcb671c refactor: 优化分页查询和代码生成模板 2025-01-14 14:10:10 +08:00
Jie Zheng
18ccee7c7f refactor: update README.md 2025-01-14 11:46:15 +08:00
Jie Zheng
2c23b68d08 refactor: 优化项目结构,移除运维管理,更新Sql文件 2025-01-14 11:40:21 +08:00
Jie Zheng
b9518dbec8 refactor: 优化代码生成模板,优化项目结构 2025-01-14 11:06:23 +08:00
Jie Zheng
1b5b265d02 refactor: 优化安全配置和修改登录逻辑隐藏密码信息 2025-01-14 10:32:12 +08:00
Jie Zheng
eff0fd9e12 refactor: 优化用户、角色、字典分页查询 2025-01-14 10:05:55 +08:00
Jie Zheng
88ea29feff fix: 修复EncryptUtils多线程环境中共享同一个 Cipher实例导致【 Cipher not initialized】的问题
close https://github.com/elunez/eladmin/issues/865
2025-01-13 18:30:41 +08:00
Jie Zheng
553bdbb219 refactor: 优化代码生成模板 2025-01-13 17:22:02 +08:00
Jie Zheng
cfbbc7c857 refactor: 代码优化 2025-01-13 17:04:22 +08:00
Jie Zheng
d2bb69798a refactor: 优化安全配置和代码结构 2025-01-13 16:46:48 +08:00
Jie Zheng
bb9a0d7213 feat: 优化数据库和Redis连接池配置 2025-01-13 16:00:44 +08:00
Jie Zheng
1136bb6172 refactor: 优化线程池配置及日志级别调整 2025-01-13 15:56:31 +08:00
Jie Zheng
eb17ffdfc7 feat: 优化配置和代码结构
1、优化项目结构、优化部分配置
2、优化Redis配置类,缓存需手动指定key生成器
3、新增AnonTagUtils,用于获取匿名接口
4、优化Swagger,排除不需要认证的接口
5、新增BigDecimalUtils,用于BigDecimal类型,+-*/计算,元与分的转换
2025-01-13 14:32:27 +08:00
Jie Zheng
fc5fbe0c85 refactor: 优化匿名访问URL处理逻辑,优化Swagger接口认证配置 2025-01-13 10:51:36 +08:00
Jie Zheng
15599f8f6e perf: 升级 Spring Boot 版本至2.6.6,升级 druid 版本至 1.2.19 2025-01-11 14:02:33 +08:00
Jie Zheng
3d5f6646c4 feat: 更新Druid版本并移除广告配置 2025-01-11 13:44:03 +08:00
Jie Zheng
c474e0f3ee fix: 优化LimitAspect中RedisScript类型及ObjUtil判断
close https://github.com/elunez/eladmin-mp/issues/47
2025-01-11 10:28:49 +08:00
Jie Zheng
987c5ec779 refactor: 移除AuditorConfig和BadConfigurationException类 2025-01-07 16:07:12 +08:00
Jie Zheng
7b37a94027 refactor: 优化RedisUtils 2025-01-06 15:25:10 +08:00
Jie Zheng
9ce4838a68 feat: 添加启动日志和Swagger访问信息 2024-12-27 17:58:48 +08:00
Jie Zheng
232bcc1c38 feat: 增加SQL日志颜色格式化 2024-12-26 11:24:46 +08:00
Jie Zheng
3de776746e refactor: 替换log4jdbc为p6spy并优化配置 2024-12-26 10:01:30 +08:00
Jie Zheng
d7e4cb7e6f 移除OnlineUserService中kickOutForUsername的@Async注解
close https://github.com/elunez/eladmin-mp/issues/43
2024-12-09 09:23:29 +08:00
Zheng Jie
f111e28c28 fix: hutool vulnerable to SQL Injection 2024-08-19 09:22:57 +08:00
Zheng Jie
df9ed69229 feat: quartz 分布式支持,默认单机运行,如果需要支持分布式可以查看 application-quartz.yml 注释 2024-08-09 20:02:36 +08:00
Zheng Jie
beb9b0ee82 Fix:用户修改邮箱失败的问题
close https://github.com/elunez/eladmin-mp/issues/36
2024-08-02 17:28:15 +08:00
Fei Yu
85486d12f7
fix: 分页查询场景时,用户列表倒叙排序失效 (#40)
Co-authored-by: MrYuFei <36062024+MrYuFei@users.noreply.github.com>
2024-08-02 17:03:24 +08:00
Zheng Jie
f17e393c97 Fix:spring-boot-starter-validation
close https://github.com/elunez/eladmin-mp/pull/40
2024-08-02 16:51:16 +08:00
Zheng Jie
ee879f81c2 update 2024-04-02 20:35:25 +08:00
Zheng Jie
c13cf4da0c Merge branch 'master' of github.com:elunez/eladmin-mp 2024-04-02 20:33:19 +08:00
Zheng Jie
f903d5e325 update 2024-04-02 20:22:13 +08:00
ChiuJun
bd7bec06a0
fix: QuartzLogMapper动态SQL布尔类型测试条件错误 (#34) 2024-02-07 17:58:43 +08:00
ifangng
8b0a0ddf2b
fix: 修复用户管理页面通过部门无法查询到用户 (#33)
如果在用户管理页面选择一个顶级部门,最终SQL条件为:WHERE u.dept_id = 7 AND u.dept_id in ( 17 , 2 , 5 , 7 ),用户如果不在顶级部门,会查询不到,在Controller代码中已经将父节点和子节点都添加在了集合中,所以可以去除u.dept_id = #{criteria.deptId} 条件。

Co-authored-by: ifangng <ifangnorz@gmail.com>
2024-01-18 11:08:12 +08:00
Zheng Jie
0bd1c552b9 修复token续期不生效问题
close https://github.com/elunez/eladmin-mp/issues/25
close https://github.com/elunez/eladmin-mp/issues/29
2024-01-02 14:36:14 +08:00
Zheng Jie
a680cd321c update UserMapper.xml
close https://github.com/elunez/eladmin-mp/issues/28
2024-01-02 14:20:33 +08:00
Zheng Jie
203149a1be 修复退出登录,提出用户,前端401死循环问题
close https://github.com/elunez/eladmin-mp/issues/24
2023-10-08 14:53:55 +08:00
Zheng Jie
277a17cbd3 字典详情编辑、删除优化修复,https://github.com/elunez/eladmin-mp/issues/15
close https://github.com/elunez/eladmin-mp/issues/15
2023-08-02 23:44:35 +08:00
Zheng Jie
d704cec4fb 解决由于jdk8之后默认禁用了部分tls协议,从而导致发送邮件失败的问题:https://github.com/elunez/eladmin/pull/809 2023-07-26 17:04:10 +08:00
Zheng Jie
dd07d4fb9f update README.md 2023-07-26 15:24:50 +08:00
Zheng Jie
5b970b0430 v1.1 版本发布 🎉 2023-07-26 14:53:29 +08:00
Zheng Jie
ac50d79a7b 修复日志导出报错问题 #8
close https://github.com/elunez/eladmin-mp/issues/8
2023-07-26 14:22:48 +08:00
Zheng Jie
0bbbdcbefb update SwaggerConfig.java
close https://gitee.com/elunez/eladmin-mp/issues/I7K6A4
2023-07-12 16:22:13 +08:00
Zheng Jie
a84d3157ab 角色管理:修复清空所有菜单保存报错问题: https://gitee.com/elunez/eladmin-mp/issues/I7KBCU
close https://gitee.com/elunez/eladmin-mp/issues/I7KBCU
2023-07-11 16:12:57 +08:00
Zheng Jie
895864b88d 代码优化 2023-07-10 11:04:25 +08:00
Zheng Jie
9437a9e186 修复编辑字典详情编辑报错问题 2023-07-08 14:36:33 +08:00
Zheng Jie
b83c33b7c1 update README.md 2023-07-07 18:07:27 +08:00
Zheng Jie
9e4a381d55 update README.md 2023-07-07 18:04:21 +08:00
Zheng Jie
61ed4bc69c 代码优化,避免【菜单、部门】移动节点时出现PID数据环形问题 2023-07-07 18:01:31 +08:00
Zheng Jie
47806c6cc4 代码优化,避免【菜单、部门】移动节点时出现PID数据环形问题:https://github.com/elunez/eladmin/issues/803 2023-07-07 17:57:23 +08:00
Zheng Jie
2572c1600c 代码优化 2023-07-07 10:41:09 +08:00