陈国辉 发表于 2013-12-25 08:58:04

jeecg-v3-simple中的类是否经过精心设计?

JEECG 我没有研究过。刚才看了jeecg-v3-simple 中几个类,觉得有些地方需要注意性能问题。

List<String> allOperation=this.systemService.findListbySql("SELECT operationcode FROM t_s_operationWHERE functionid='"+functionId+"'");

String hasOperSql="SELECT operation FROM t_s_role_function fun, t_s_role_user role WHERE" +
"fun.functionid='"+functionId+"' AND fun.operation!=''AND fun.roleid=role.roleid AND role.userid='"+sessioninfo.getUser().getId()+"' ";

这种SQL,没有使用绑定变量,当大量访问时,容易引起性能瓶颈, 尤其是Oracle数据库,这是常出现的需要优化的地方。

页: [1]
查看完整版本: jeecg-v3-simple中的类是否经过精心设计?