提交 279993ca 编写于 作者: zhouweidong's avatar zhouweidong

实体数据同步逻辑优化(remove)

上级 f6058d7b
...@@ -95,7 +95,7 @@ public class RocketMQListenerProcessor implements MessageListenerOrderly { ...@@ -95,7 +95,7 @@ public class RocketMQListenerProcessor implements MessageListenerOrderly {
<#if inputAction?lower_case == 'get' || inputAction?lower_case == 'remove'> <#if inputAction?lower_case == 'get' || inputAction?lower_case == 'remove'>
body = toObject(messageExt.getBody()); body = toObject(messageExt.getBody());
if (!ObjectUtils.isEmpty(body)) { if (!ObjectUtils.isEmpty(body)) {
${pub.getPKGCodeName()}.core.${dataEntity.getPSSystemModule().getCodeName()?lower_case}.domain.${entityName} domain = new ${pub.getPKGCodeName()}.core.${dataEntity.getPSSystemModule().getCodeName()?lower_case}.domain.${entityName}; ${pub.getPKGCodeName()}.core.${dataEntity.getPSSystemModule().getCodeName()?lower_case}.domain.${entityName} domain = new ${pub.getPKGCodeName()}.core.${dataEntity.getPSSystemModule().getCodeName()?lower_case}.domain.${entityName}();
domain.set("${columnname}",body); domain.set("${columnname}",body);
${entityName}Service.${inputAction}(domain.get${srfcaseformat(dataEntity.getKeyPSDEField().codeName,'l_u2lC')?cap_first}()); ${entityName}Service.${inputAction}(domain.get${srfcaseformat(dataEntity.getKeyPSDEField().codeName,'l_u2lC')?cap_first}());
} }
...@@ -106,7 +106,6 @@ public class RocketMQListenerProcessor implements MessageListenerOrderly { ...@@ -106,7 +106,6 @@ public class RocketMQListenerProcessor implements MessageListenerOrderly {
body = strBody; body = strBody;
</#if> </#if>
} }
log.info("MQ消息topic={}, tags={}, 消息内容={}", topic, tags, body);
<#else> <#else>
log.info("接收到[{}]消息,但未配置实体输入过滤行为,消息将被忽略。"+new String(messageExt.getBody())); log.info("接收到[{}]消息,但未配置实体输入过滤行为,消息将被忽略。"+new String(messageExt.getBody()));
</#if> </#if>
...@@ -114,6 +113,7 @@ public class RocketMQListenerProcessor implements MessageListenerOrderly { ...@@ -114,6 +113,7 @@ public class RocketMQListenerProcessor implements MessageListenerOrderly {
</#list> </#list>
</#if> </#if>
</#list> </#list>
log.info("MQ消息topic={}, tags={}, 消息内容={}", topic, tags, body);
} catch (Exception e) { } catch (Exception e) {
log.error("获取MQ消息内容异常{}", e); log.error("获取MQ消息内容异常{}", e);
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册