若依
f7595e4998
!700 newInstance() 已弃用,使用clazz.getDeclaredConstructor().newInstance()
...
Merge pull request !700 from Nymph2333/N/A
2 years ago
若依
64e71302e4
!699 修改注释中不存在的参数 set
...
Merge pull request !699 from bell/N/A
2 years ago
若依
2e99c68ed0
!695 下拉图标选择组件优化:1.已选择图标高亮回显 2.滚动条采用el-scrollbar
...
Merge pull request !695 from 绿色心情/icon-select
2 years ago
Nymph2333
af0e0a110e
newInstance() 已弃用,使用clazz.getDeclaredConstructor().newInstance()
...
This method propagates any exception thrown by the nullary constructor, including a checked exception. Use of this method effectively bypasses the compile-time exception checking that would otherwise be performed by the compiler. The Constructor.newInstance method avoids this problem by wrapping any exception thrown by the constructor in a (checked) InvocationTargetException.
The call
clazz.newInstance()
can be replaced by
clazz.getDeclaredConstructor().newInstance()
The latter sequence of calls is inferred to be able to throw the additional exception types InvocationTargetException and NoSuchMethodException. Both of these exception types are subclasses of ReflectiveOperationException.
Signed-off-by: Nymph2333 <498092988@qq.com>
2 years ago
bell
bef86e041f
修改注释中不存在的参数 set
...
Signed-off-by: bell <bellaconly@qq.com>
2 years ago
尹志芳
1067567f1c
下拉图标选择组件优化:1.已选择图标高亮回显 2.滚动条采用el-scrollbar
2 years ago
e
0a670fdfd7
将el-scrollbar移动到main-container下,避免鼠标移出时无法隐藏的问题
2 years ago
RuoYi
a33090c90e
添加新群号:101046199
2 years ago
RuoYi
5061558e94
优化固定头部页签滚动条被隐藏的问题
2 years ago
若依
e7f088552f
!686 导出Excel,提高导出效率
...
Merge pull request !686 from wzy1024/wzy1024
2 years ago
若依
5c4682e060
!683 修复tab栏“关闭其他”异常的问题
...
Merge pull request !683 from 也曾为你像超人/N/A
2 years ago
若依
5d5ebbec1a
!682 解决表字段comment过长问题
...
Merge pull request !682 from baozhigang/column-comment
2 years ago
若依
23544bab5e
!681 移除vue-multiselect样式
...
Merge pull request !681 from Jimi/master
2 years ago
若依
c5ef0336a4
!676 优化选择图标组件
...
Merge pull request !676 from 也曾为你像超人/master
2 years ago
wzy1024
a907f8485c
导出Excel,@Excel注解使用dictType属性时,如果有大量的字典数据,就会有大量的查询redis(打开、关闭),导致特别慢。于是使用map存储字典数据,相同的key就不需要再次去查询redis,大大提高了导出效率。
2 years ago
也曾为你像超人
66200c4203
修复tab栏”关闭其他“异常的问题
...
Signed-off-by: 也曾为你像超人 <1553592282@qq.com>
2 years ago
“baozhigang”
5a25212509
解决表字段comment过长问题
2 years ago
Jimi
95742bf5bd
style:移除vue-multiselect样式(项目中并未安装vue-multiselect plugin)
2 years ago
刘元博
4eea8cdbb0
优化选择图标组件
2 years ago
RuoYi
cfce89be7d
升级fastjson到最新版2.0.25
2 years ago
RuoYi
ce7e12ec1d
delete build style
2 years ago
RuoYi
4f02f3c6f7
支持自定义隐藏属性列过滤子对象(I6GKPE)
2 years ago
若依
5ca9bd6876
!673 $tab.closePage后存在非首页页签时不应该跳转首页
...
Merge pull request !673 from Giovanni/master
2 years ago
若依
020a2d4670
!671 优化弹窗后导航栏偏移的问题
...
Merge pull request !671 from 也曾为你像超人/master
2 years ago
若依
635d621b7b
!670 修复页面切换时布局错乱的问题
...
Merge pull request !670 from 也曾为你像超人/N/A
2 years ago
若依
4cbd56cbd7
!669 用户多角色,数据权限切面处理时可能出现权限抬升的情况。
...
Merge pull request !669 from 0慕容雪0/master
2 years ago
刘元博
dcb9cb3d13
优化弹窗后导航栏偏移的问题
2 years ago
0慕容雪0
628bc94a9a
update ruoyi-framework/src/main/java/com/ruoyi/framework/aspectj/DataScopeAspect.java.
...
Signed-off-by: 0慕容雪0 <ytu.mxh@163.com>
2 years ago
也曾为你像超人
38ddefe2e6
修复页面切换时布局错乱的问题
...
Signed-off-by: 也曾为你像超人 <1553592282@qq.com>
2 years ago
Giovanni
7a090bda1e
关闭当前tab页应跳转最右侧tab页而非首页
2 years ago
0慕容雪0
4e8dd706d5
update ruoyi-framework/src/main/java/com/ruoyi/framework/aspectj/DataScopeAspect.java.
...
DataScopeAspect,数据权限切面处理类中,用户多角色情况下,若所有角色都不包含传递过来的权限字符,这个时候sqlString也会为空,会导致用户拥有全部数据权限,所以要限制一下, 可以根据conditions集合是否为空,来判断循环时所有角色是否都是在判断权限字符时continue了。
复现方法: 在使用@DataScope注解时permission定义了值,这个值所有角色不包含。
Signed-off-by: 0慕容雪0 <ytu.mxh@163.com>
2 years ago
RuoYi
641e550d7f
优化修改密码日志存储明文问题(I6ESO9)
2 years ago
RuoYi
81a01a1d9d
优化文件下载出现的异常(I6DLNU)
2 years ago
RuoYi
6523fe59a2
日志管理使用索引提升查询性能
2 years ago
RuoYi
90970eb9fe
修复isMatchedIp的参数判断产生空指针的问题
2 years ago
RuoYi
3402b69556
移除apache/commons-fileupload依赖
2 years ago
RuoYi
2c5e3e429f
升级druid到最新版本1.2.16
2 years ago
RuoYi
96ba768f50
优化代码
2 years ago
RuoYi
1268637e58
支持登录IP黑名单限制
2 years ago
RuoYi
61caa7966b
日志注解支持排除指定的请求参数
2 years ago
RuoYi
a5f95eddab
新增监控页面图标显示
2 years ago
RuoYi
ade70583e9
操作日志新增消耗时间属性
2 years ago
RuoYi
5676cf9ad4
修复匿名注解Anonymous空指针问题(I683DT)
2 years ago
RuoYi
c3d0cd5f8c
update copyright 2023
2 years ago
RuoYi
eb96afee64
连接池Druid支持新的配置connectTimeout和socketTimeout
2 years ago
RuoYi
5873da87ae
屏蔽定时任务bean违规的字符
2 years ago
若依
4f1933e2e4
!656 tagsView右键选择框,只存在首页时,不应该存在关闭左侧选项
...
Merge pull request !656 from Giovanni/master
2 years ago
Giovanni
9926f73cd0
tagsView右选框,首页不应该存在关闭左侧选项
2 years ago
RuoYi
492919d4af
升级element-ui到最新版本2.15.12
2 years ago
RuoYi
a7ff50e695
升级fastjson到最新版2.0.23
2 years ago