java - Spring-data-jpa 刚保存的信息查找不到
问题描述
1 后台结构后台的结构是 SpringMVC, Spring, jpa(HibernateJpaDialect),DataSource(c3p0), Mysql(InnoBDB), transactionManager(JpaTransactionManager)。
2 问题环境@Transactional(value = 'transactionManager', isolation = Isolation.READ_UNCOMMITTED) public Object addScenicSpot(int tourGuideID, String jsonStr) {Djd_js entity = new Djd_js();try{ _setEntity(entity, jsonStr); entity.setDaoyouID(tourGuideID); jdjsDao.save(entity); int spotId = entity.getId(); //添加信息到消息队列中try { Sender sender = new SenderImpl(); sender.getGPSFromBaiduAPI('jdjs', spotId, entity.getDizhi());} catch (InterruptedException e) { return false;} return spotId;}catch (Exception e){ return false;} }
以上是保存的部分,并把得到的 ID 发送到消息队列中,下边是消息队列的处理部分
public boolean updateLngAndLat(MessageVo messageVo) {System.out.println('CreateTime--------'+messageVo.getCreateDate());System.out.println('Address--------'+messageVo.getContent());System.out.println('Id--------'+messageVo.getId());Djd_js entity = jdjsDao.findOne(messageVo.getId());System.out.println('entity-Address--------'+entity.getDizhi());、、运行到这里就直接卡住了,如果注释掉查询,其他的调用皆正常。Map<String, Object> result = LngAndLatUtil.getLngAndLat(((MessageVo) messageVo).getContent());System.out.println('result--------'+(int)result.get('result'));if (1 == (int)result.get('result')){ entity.setJingdu(Double.valueOf(result.get('lng').toString())); entity.setWeidu(Double.valueOf(result.get('lat').toString())); System.out.println('message-------------------------------'+'lng:'+Double.valueOf(result.get('lng').toString())+', lat:'+Double.valueOf(result.get('lat').toString())); jdjsDao.updateLngAndLatBySenciSpotID(messageVo.getId(), (Double) result.get('lng'), (Double) result.get('lat'));}else { System.out.println('message-------------------------------False');}return false; }3 问题描述
前端调用 addScenicSpot() 方法,会将信息保存到数据库中,然后将保存之后的数据控中的ID发送到消息队列中,然后订阅者处理队列中的信息,根据 ID 查询到刚保存的信息,然后调用外部接口查询到经纬度,并将得到的经纬度存储到数据库中。现在的问题是,保存信息正常,但是到了订阅者处理这边,根据得到的 ID 查找不到保存的信息。
4 猜测问题所在产生bug的原因是spring事务提交晚于消息队列的生产消息,导致消息队列消费消息时获取到的数据不正确,灵感来自于这里:http://www.cnblogs.com/taocon...
问题解答
回答1:同步调用,改为异步调用?
@AsyncgetGPSFromBaiduAPI
回答2:已经解决了问题了,应用的这里的方法:http://www.cnblogs.com/taocon...
相关文章:
1. PHP单例模式2. node.js - nvm怎么更新node的最新版本呀?3. html5 - 目前 公司App 嵌入H5页面 做个 手机支付功能 没有做过 所以 请求各位有经验的 给个思路4. dockerfile - [docker build image失败- npm install]5. Angular.js 无法设置Authorization头,该怎么解决?6. html5 - Vue绑定动态变量不可用7. docker不显示端口映射呢?8. Docker for Mac 创建的dnsmasq容器连不上/不工作的问题9. angular.js使用$resource服务把数据存入mongodb的问题。10. angular.js - angular内容过长展开收起效果