提交 2e8c7504 编写于 作者: sq3536's avatar sq3536

mockdata

上级 9ec0bc5d
......@@ -25,16 +25,12 @@ public class DstConfigExService extends DstConfigServiceImpl {
return com.baomidou.mybatisplus.core.toolkit.ReflectionKit.getSuperClassGenericType(this.getClass().getSuperclass(), 1);
}
@Autowired
@Lazy
private IDstConfigService proxy=null;
@Override
@CacheEvict( value="ibzrt_configs",key = "'cfgid:'+#p0.cfgType+'||'+#p0.targetType+'||'+#p0.userId")
public boolean update(DstConfig et) {
if( super.update(et))
proxy.reset(et);
return true;
return super.update(et);
}
/**
......
......@@ -121,7 +121,10 @@ public class LiteCoreResource {
wrapper.eq(DstConfig::getUserId,userId);
wrapper.eq(DstConfig::getCfgType,configType);
wrapper.eq(DstConfig::getTargetType,targetType);
DstConfig config=dstConfigService.getOne(wrapper,true);
DstConfig config=dstConfigService.getOne(wrapper,false);
if(config==null)
throw new BadRequestAlertException("未找到配置项","DstConfig",configType+"-"+targetType);
return ResponseEntity.ok(JSON.parse(config.getCfg()));
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册