Commit Graph

257 Commits (1cf6ee40b1306b32293c7e310d19b9a6de584325)

Author SHA1 Message Date
researchlive 1cf6ee40b1
One method name is not clear
The original method name is not clear enough to describe the work of the method. In fact, this method is used to search all matched results. But the original name "getDicts" may make developers misunderstand this method that is used to create dictionaries or some other works. I just would like to make it clear about this problem.
2020-05-04 13:37:38 -04:00
ZhengJie d35ffc9d8c Merge branch '2.5dev' of https://github.com/jhpx/eladmin 2020-04-23 12:20:17 +08:00
ZhengJie 2380ed792d Merge branch 'master' of github.com:elunez/eladmin 2020-04-23 12:18:07 +08:00
ZhengJie 1a3c0e513f update 2020-04-23 12:17:49 +08:00
zbq2019 0783648c01
fix bug: 当前用户如果没有任何权限时,在输入用户名后,刷新验证码会抛IllegalArgumentException (#333)
Co-authored-by: Dingwq <aa@mmm.com>
2020-04-23 12:16:15 +08:00
wtune 95e9128b80
Change quartz_log engine to MyISAM (#316) 2020-04-23 12:10:31 +08:00
NM$L c847209536
Update ServiceImpl.ftl (#318)
生成代码 deleteAll 方法 参数错误
2020-04-23 12:09:10 +08:00
wtune 66f5704913
Add index on role.name (#294)
Co-authored-by: Qianmian Yu <im.qianmian.yu@gmail.com>
2020-04-23 11:58:20 +08:00
wtune 266910d3ed
Add index on visits.create_time (#290)
Co-authored-by: Qianmian Yu <im.qianmian.yu@gmail.com>
2020-04-23 11:58:00 +08:00
wtune 54fd94b3fa
Add index on log.create_time (#288)
Co-authored-by: Qianmian Yu <im.qianmian.yu@gmail.com>
2020-04-23 11:57:34 +08:00
ZhengJie d6bd1d972c Merge 2.5dev 2020-04-22 09:30:00 +08:00
jiangmf c4ddacc77d 修复不存在账号登录时,userService.findByName抛出异常,而loadUserByUsername未将其捕获处理的bug 2020-04-09 17:25:06 +08:00
ZhengJie 1f856a1d4b 🐛 修复QueryHelp::getPredicate查询会产生多余的Join 2020-04-03 22:01:06 +08:00
ZhengJie 3694add6c1 文件上传优化,加入FileProperties,根据系统选择上传目录 2020-03-28 19:36:23 +08:00
Elune 646a79537a !13 【轻量级 PR】:update eladmin-system/src/main/java/me/zhengjie/modules/security/security/TokenFilter.java.
Merge pull request !13 from java客栈的小二/N/A
2020-03-26 13:34:26 +08:00
java客栈的小二 96d37ed443 update eladmin-system/src/main/java/me/zhengjie/modules/security/security/TokenFilter.java.
修复SecurityProperties参数配置自定义令牌前缀bug,既然允许自定义令牌前缀,就不应该固定截取七位
2020-03-26 12:00:44 +08:00
Elune 0548d8486d 代码优化 2020-03-10 14:13:35 +08:00
Elune 207e6fb1df SecurityUtils 加入获取当前登录用户ID方法,Security 结构调整 2020-03-10 13:49:44 +08:00
Elune 4054ac7bc8 字典支持多选删除 2020-03-09 09:16:18 +08:00
Elune 9f33cc07bc Merge branch '2.5dev' of gitee.com:elunez/eladmin into 2.5dev 2020-03-07 18:48:02 +08:00
Elune 1b3f70447d update #273 2020-03-07 18:47:40 +08:00
Elune 861458c8c6 优化字典详情排序问题 #273 2020-03-07 18:45:33 +08:00
Elune e294d303e5 代码生成器优化 2020-03-07 18:15:12 +08:00
Elune 8acf3cc2d4 代码生成器优化 2020-03-07 18:14:17 +08:00
yuankangli cf608b43b6
将sigar替换为oshi (#278)
* sigar 使用需要修改系统文件, 现改为使用oshi监控系统信息

* 去除README.md和pom.xml中关于sigar的相关内容
2020-03-07 17:02:03 +08:00
elunez 286a48368f
修复bug,检查 reshources username 和 email (#276) 2020-03-05 09:33:09 +08:00
Elune 45973ab86b Merge branch '2.5dev' of github.com:elunez/eladmin into 2.5dev 2020-02-10 14:54:17 +08:00
Elune e453f2b8bf Merge branch 'master' of https://gitee.com/dbdu/eladmin into 2.5dev 2020-02-10 14:45:58 +08:00
Elune bc5187a7ad 代码优化 2020-02-10 14:45:51 +08:00
wtune 5f8fa1f2a7 add index on dept.pid (#254) 2020-01-16 14:32:17 +08:00
wtune 06992e06e2 add index on dict.name (#256) 2020-01-16 14:32:01 +08:00
d15801543974 b0db5ca3bb 优化BaseEntity,开启审计功能。 (#252)
保存时自动设置创建人
修改时自动设置修改人
2020-01-16 14:30:34 +08:00
dbdu 68510e1e69 fix: 修正Linux下因非root用户权限而导致的创建目录失败,进而导致请求失败的问题。
更改明细:
        // 拼接的路径:/tmpeladmin-gen-temp/,这个路径在Linux下需要root用户才有权限创建,非root用户会权限错误而失败,更改为: /tmp/eladmin-gen-temp/
        // String tempPath =System.getProperty("java.io.tmpdir") + "eladmin-gen-temp" + File.separator + genConfig.getTableName() + File.separator;
        String tempPath =System.getProperty("java.io.tmpdir") + File.separator + "eladmin-gen-temp" + File.separator + genConfig.getTableName() + File.separator;
2019-12-31 10:55:25 +08:00
Elune da006624a4 🔖 v2.4
版本发布,详情查看发行版说明
2019-12-22 15:40:52 +08:00
Elune 7272f88719 🔖 v2.4
版本发布,详情查看发行版说明
2019-12-22 15:36:39 +08:00
Elune 3769230743 代码优化 2019-12-22 13:58:36 +08:00
Elune 4e0deae13d 优化代码生成器,优化角色级别配置 2019-12-22 10:38:35 +08:00
Elune 5f41318b9d 代码生成同步功能完成 2019-12-21 23:33:23 +08:00
Elune fac8e2f51e 修复运维管理的一些bug 2019-12-21 21:30:45 +08:00
Elune d32216d513 update 2019-12-21 15:42:39 +08:00
Elune a6e57e160f @Query 加入NOT_NULL查询,优化图床上传,加入图床同步功能 2019-12-20 19:31:37 +08:00
Elune 467e04adca 去除免费图床,需要使用的请前往:https://sm.ms/ 2019-12-19 12:34:19 +08:00
Elune 554aa58c40 代码优化 2019-12-18 21:06:48 +08:00
Elune 8c7217eb7a 代码优化 2019-12-18 13:25:04 +08:00
Elune 7d22178fa2 代码优化 2019-12-14 12:27:47 +08:00
Elune ebdf7799ca 代码优化 2019-12-10 19:17:35 +08:00
Elune aa2da4e222 Merge branch '2.4opt' into 2.4dev 2019-12-10 19:00:08 +08:00
Elune 116289a922 Merge branch '2.4opt' of gitee.com:elunez/eladmin into 2.4opt 2019-12-10 18:59:35 +08:00
Elune 900ca221a9 代码优化 2019-12-10 18:59:18 +08:00
zoulejiu a9e12b5ccd 2.4dev 修复一些错误和新增日志接口 (#217)
* 修复到处错误日志,请求路径不存在问题

(cherry picked from commit ccb7b4f908816f14f21ecef648321d722ac50fc7)

* 1.新增日志清空接口

* 1.修复ip2region 不会自动关闭连接问题

* 1.新增单点登录,多设备登录,以最后登录为准,之前的登录都会被踢掉,可以使用single.login =false 关闭
2.默认开启
2019-12-10 10:16:19 +08:00