博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
注意资源利用 不然导致资源消耗会很严重
阅读量:6606 次
发布时间:2019-06-24

本文共 1526 字,大约阅读时间需要 5 分钟。

for(Shop s:list) {            System.out.println(s.getName());            String sql="select shopId,sum(ele_bank+ele_card+water_card+water_bank+coal_card+coal_bank) as zonghe ,sum(sale_bank+sale_card) as  sale,sum(cigarette_card+cigarette_bank)  as bacco, sum(yidong_card+yidong_bank+dianxin_card+dianxin_bank)  as recharge from hs_shop_items  where  record_time like '%2013-12-12%' and shopId="+s.getId();            Session officeSession=officeSessionFactory.openSession();            officeSession.beginTransaction();            SQLQuery queryOffice=officeSession.createSQLQuery(sql);            List
r=queryOffice.addEntity(ShopTransDTO.class).list(); res.add(r.get(0)); }

  

如上图中的

Session officeSession=officeSessionFactory.openSession();officeSession.beginTransaction();

  

这个部分放在循环中是错误的

 

应该这么写:

Session officeSession=officeSessionFactory.openSession();officeSession.beginTransaction();for(Shop s:list) {            System.out.println(s.getName());            String sql="select shopId,sum(ele_bank+ele_card+water_card+water_bank+coal_card+coal_bank) as zonghe ,sum(sale_bank+sale_card) as  sale,sum(cigarette_card+cigarette_bank)  as bacco, sum(yidong_card+yidong_bank+dianxin_card+dianxin_bank)  as recharge from hs_shop_items  where  record_time like '%2013-12-12%' and shopId="+s.getId();            SQLQuery queryOffice=officeSession.createSQLQuery(sql);            List
r=queryOffice.addEntity(ShopTransDTO.class).list(); res.add(r.get(0));}

  

转载地址:http://itfso.baihongyu.com/

你可能感兴趣的文章
记一个hystrix异常
查看>>
9.02-Spring IOC 容器中Bean的生命周期
查看>>
6.6 tar打包
查看>>
微信自动抢红包的实现(Demo已增加查看TopActivity功能)
查看>>
Spring MVC核心技术
查看>>
TCP协议如何保证传输的可靠性
查看>>
Spring Cloud云架构 - SSO单点登录之OAuth2.0 登出流程(3)
查看>>
建站心得之discuz门户程序相比ZBLOG具有哪些优势[图]
查看>>
编程之美 测试赛 石头剪刀布
查看>>
签名问题
查看>>
软件开发各阶段交付物列表
查看>>
2018-05-24 Linux学习
查看>>
ntp服务器的搭建
查看>>
我的友情链接
查看>>
sysstat 安装
查看>>
六、nginx搭建织梦DedeCms网站
查看>>
Tair学习小记
查看>>
网卡绑定(服务器&&交换机),缓存服务器Squid架构配置
查看>>
web网站加速之CDN(Content Delivery Network)技术原理
查看>>
打算写一款框架来提高自己 写个结构吧
查看>>