use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class AppServiceExtImpl method getAppService.
/**
* 通过服务编号获取对应的服务信息
* @return
*/
public AppService getAppService(String serviceCode) {
Map<String, AppService> appServiceMap = CacheCustomer.getAPP_SERVICE_MAP();
AppService appService = appServiceMap.get(serviceCode);
if (appService == null) {
appService = selectAppServiceByAppServiceId(serviceCode);
}
return appService;
}
use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class TakeChargingServiceImpl method getAppServiceByAppServiceId.
/**
* 根据appServiceId获取AppService
*
* @param appServiceId
* @return
*/
public AppService getAppServiceByAppServiceId(String appServiceId) {
AppService appService = new AppService();
AppServiceExample ase = new AppServiceExample();
AppServiceExample.Criteria criteria = ase.or();
criteria.andAppServiceIdEqualTo(appServiceId);
appService = sqlSession.selectOne("com.itrus.portal.db.AppServiceMapper.selectByExample", ase);
return appService;
}
use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class StoreChargingServiceImpl method getAppServiceByAppServiceId.
/**
* 根据appServiceId获取AppService
*
* @param appServiceId
* @return
*/
public AppService getAppServiceByAppServiceId(String appServiceId) {
AppService appService = new AppService();
AppServiceExample ase = new AppServiceExample();
AppServiceExample.Criteria criteria = ase.or();
criteria.andAppServiceIdEqualTo(appServiceId);
appService = sqlSession.selectOne("com.itrus.portal.db.AppServiceMapper.selectByExample", ase);
return appService;
}
use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class PersonalServiceAuthenticationServiceImpl method updatePersonalServiceAuthentication.
/**
* 修改实名认证服务
* @param appServiceAuthentication
* @param appService
* @param id
* @return
*/
public void updatePersonalServiceAuthentication(PersonalServiceAuthentication personalServiceAuthentication, AppService appService, Long id) {
DefaultTransactionDefinition def = new DefaultTransactionDefinition();
def.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = transactionManager.getTransaction(def);
try {
// 修改实名认证服务配置表
PersonalServiceAuthentication personalServiceAuthentication0 = selectById(personalServiceAuthentication.getId());
personalServiceAuthentication.setAppService(personalServiceAuthentication0.getAppService());
sqlSession.update("com.itrus.portal.db.PersonalServiceAuthenticationMapper.updateByPrimaryKey", personalServiceAuthentication);
// 修改应用服务表
AppService appService0 = appServiceImpl.selectById(appService.getId());
appService.setCreator(appService0.getCreator());
appService.setType(1L);
appService.setCreateTime(appService0.getCreateTime());
appService.setServiceConfigName(appService0.getServiceConfigName());
appService.setServiceConfigId(appService0.getServiceConfigId());
appService.setModifyTime(new Date());
appService.setModifier(id);
appService.setIsDelete(appService0.getIsDelete());
sqlSession.update("com.itrus.portal.db.AppServiceMapper.updateByPrimaryKey", appService);
transactionManager.commit(status);
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
} finally {
if (!status.isCompleted())
transactionManager.rollback(status);
}
}
use of com.itrus.portal.db.AppService in project portal by ixinportal.
the class ChargingFlowTask method charging.
/**
* 遍历所有计费失败的记录,重新计费
*
* @Scheduled(fixedRate = 1000 * 60 * 60 * 24) 设置为每天凌晨2点触发
* @Scheduled(cron = "0 0 2 * * ?")
* "0 0 12 * * ?" 每天中午12点触发
* @Scheduled(cron = "0/10 * * * * ?")
*/
public void charging() {
synchronized (ChargingFlowTaskLock) {
// start------------处理双机互斥----------
if (null == taskFlag) {
taskFlag = systemConfigService.isTimedTaskHost();
}
if (taskFlag.equals(false)) {
return;
}
// end------------处理双机互斥----------
// 计算没有记账的总数
ChargingFlowExample cfe = new ChargingFlowExample();
ChargingFlowExample.Criteria criteria = cfe.or();
criteria.andIsChargingEqualTo(false);
Integer count = sqlSession.selectOne("com.itrus.portal.db.ChargingFlowMapper.countByExample", cfe);
if (count == 0) {
return;
}
Map<Long, ApplicationInfo> applicationInfoMap = applicationInfoService.selectAppInformationMap();
Map<Long, AppService> appServiceMap = appServiceExt.selectAppServicerMap();
// 分页查询信息
Integer page = 1;
Integer size = 50;
Integer offset = size * (page - 1);
// 循环的次数
Integer time = 0;
// 批帐成功次数
Integer successNum = 0;
// 清空失败次数
failTotalNum = 0;
time = (count + size - 1) / size;
for (int i = time; i > 0; i--) {
// 查询条件设置一次即可,因为每次循环,都会把前面的false
ChargingFlowExample cfe2 = new ChargingFlowExample();
ChargingFlowExample.Criteria criteria2 = cfe2.or();
criteria2.andIsChargingEqualTo(false);
cfe2.setLimit(size);
// 当失败次数大于0的时候,设置将失败次数加入偏移量中,避免失败很多的时候,全部在循环那些失败的.
if (failTotalNum > 0) {
cfe2.setOffset(offset + failTotalNum);
} else {
cfe2.setOffset(offset);
}
List<ChargingFlow> chargingFlows = chargingFlowService.selectListByExample(cfe2);
for (ChargingFlow chargingFlow : chargingFlows) {
DefaultTransactionDefinition dtd = new DefaultTransactionDefinition();
// 事物的传播行为,使用同一个事物
dtd.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = transactionManager.getTransaction(dtd);
try {
ApplicationInfo applicationInfo = applicationInfoMap.get(chargingFlow.getApplicationInfo());
AppService appService = appServiceMap.get(chargingFlow.getAppService());
Map<String, Object> retMap = new HashMap<>();
if (chargingFlow.getChargingType().equals(ComNames.SERVICE_TYPE_CERTIFICATION)) {
// 实名认证计费
retMap = certificationChargingService.chargingTask(chargingFlow.getTransinfoName(), chargingFlow.getTransinfoId(), applicationInfo, appService, chargingFlow.getTransinfoPrimaryId(), chargingFlow.getTransinfoTableName(), chargingFlow.getId());
} else if (chargingFlow.getChargingType().equals(ComNames.SERVICE_TYPE_STORE)) {
// 存证服务计费
retMap = storeChargingService.storeChargingTask(chargingFlow.getTransinfoName(), chargingFlow.getTransinfoId(), applicationInfo, appService, chargingFlow.getTransinfoPrimaryId(), chargingFlow.getTransinfoTableName(), chargingFlow);
} else if (chargingFlow.getChargingType().equals(ComNames.SERVICE_TYPE_TAKE)) {
// 出证服务计费
retMap = takeChargingService.takeChargingTask(chargingFlow.getTransinfoName(), chargingFlow.getTransinfoId(), applicationInfo, appService, chargingFlow.getTransinfoPrimaryId(), chargingFlow.getTransinfoTableName(), chargingFlow);
}
Integer retCode = (Integer) retMap.get("retCode");
if (null != retCode && retCode == 1) {
successNum++;
Map<String, Long> map = new HashMap<>();
Charging charging = (Charging) retMap.get("charging");
chargingFlowService.recoderHasCharing(chargingFlow, charging.getId());
transactionManager.commit(status);
} else {
transactionManager.rollback(status);
// 失败总数加1
failTotalNum++;
// 获取失败记录的流水号id和上次记录的失败时间
Date date = failFlowIdMap.get(chargingFlow.getId());
if (null != date) {
long timeInMS = compareDate(date);
if (timeInMS > HALF_OF_THE_DAY) {
LogUtil.syslog(sqlSession, "计费批帐,单条流水失败", "错误信息:" + retMap.get("retMsg") + "流水号为:" + chargingFlow.getId());
// 更新失败记录时间
failFlowIdMap.put(chargingFlow.getId(), new Date());
}
} else {
// 流水号第一次失败
failFlowIdMap.put(chargingFlow.getId(), new Date());
LogUtil.syslog(sqlSession, "计费批帐,单条流水失败", "错误信息:" + retMap.get("retMsg") + "流水号为:" + chargingFlow.getId());
}
}
} catch (Exception e) {
transactionManager.rollback(status);
// 失败总数加1
failTotalNum++;
// 获取失败记录的流水号id和上次记录的失败时间
Date date = failFlowIdMap.get(chargingFlow.getId());
if (null != date) {
long timeInMS = compareDate(date);
if (timeInMS > HALF_OF_THE_DAY) {
LogUtil.syslog(sqlSession, "计费批帐,单条流水失败", "异常信息:" + e.getMessage() + "流水号为:" + chargingFlow.getId());
// 更新失败记录时间
failFlowIdMap.put(chargingFlow.getId(), new Date());
}
} else {
// 流水号第一次失败
failFlowIdMap.put(chargingFlow.getId(), new Date());
LogUtil.syslog(sqlSession, "计费批帐,单条流水失败", "异常信息:" + e.getMessage() + "流水号为:" + chargingFlow.getId());
}
}
}
}
// 当有成功批帐的记录,就记录
if (successNum > 0) {
LogUtil.syslog(sqlSession, "计费批帐", "本次批帐成功的流水总数量为:" + successNum + ", 未批帐的流水总量为:" + (count - successNum >= 0 ? count - successNum : 0));
// 批帐完成,本机重新初始化缓存,通知另外一台机器从数据库加载缓存数据
cacheCustomer.initChargeRule();
CertificationChargingHandler cch = new CertificationChargingHandler();
QueueThread.buildCertificationTask(cch);
} else {
// 当全部是失败的时候,则判断失败总数和上次记录全部是失败的时间
// 获取失败记录的流水号id和上次记录的失败时间
Date date = failFlowTotalMap.get(failTotalNum);
if (null != date) {
long timeInMS = compareDate(date);
if (timeInMS > HALF_OF_THE_DAY) {
LogUtil.syslog(sqlSession, "计费批帐,多条流水失败", "失败流水总量为:" + failTotalNum);
// 更新失败记录时间
failFlowTotalMap.put(failTotalNum, new Date());
return;
}
} else {
// 流水失败总数第一次出现
failFlowTotalMap.put(failTotalNum, new Date());
LogUtil.syslog(sqlSession, "计费批帐,多条流水失败", "失败流水总量为:" + failTotalNum);
return;
}
}
}
}
Aggregations