1

我可以在以下问题上获得一些帮助吗:调用转换器将输入对象转换为映射对象并调用处理程序,处理程序缺少之前添加的标头值。为什么将有效负载转换为 Map 对象会丢失所有标头?

//Adding header here setHeader("t", "t");
@ResponseBody
public EmResponse getAuditTrail(@Valid @RequestBody NGAuditTrailEntry auditEntry) {
    LOG.info("Audit Service Called, creating new audit " + auditEntry);
    AuditCreationFlow.CreateAuditGateway auditGateway = applicationContext.getBean(AuditCreationFlow.CreateAuditGateway.class);
    MessageBuilder messageBuilder = MessageBuilder.withPayload(auditEntry).setHeader("t", "t");
    Object response = auditGateway.createAudit(messageBuilder.build());
    EmResponse res = new EmResponse();
    LOG.info("Done with Audit creation. Response " + response);
    return res;
}
//Integration flow starts here
public IntegrationFlow createAuditGatewayFlow() {
    LOG.debug("Entered to spring integration flow to create the Audit entry");
    return IntegrationFlows.from("auditInputChannel")
        .handle(auditObjTransformer, "transformToEjbCompatible")
        .handle(ejbCaller, "callEjb")
        .get();
}
//Transforming payload object to map
@Component
public class AuditObjTransformer {
    private final Logger LOG = LoggerFactory.getLogger(this.getClass());

    @Transformer
    public Object transformToEjbCompatible(NGAuditTrailEntry ngAuditTrailEntry, Map<String, Object> headers) {
        LOG.debug("Transforming the NGAuditTrailEntry To AuditEntry object which is EJB compatible");

        //@TODO - Tranformation code goes here.

        String s = ngAuditTrailEntry.getObjectName();
        Map<String, String> m = new HashMap<>();
        m.put("x", s);
        return m;
    }
//Here in this handler, not getting headers what I added in the rest service above.
public class EJBCaller {
    private final Logger LOG = LoggerFactory.getLogger(this.getClass());

    public Object callEjb(Object payload, Map<String, Object> headers) throws EJBResponseException {
        LOG.debug("Calling Audit EJB to crated Audit entry.");

        //@TODO EJB calling code goese here.

        LOG.debug("Returned from EJB after creating Audit entry. Returned value" + payload);
        return payload;
    }

如果转换不是映射,则标题中没有问题。

谢谢,湿婆

4

1 回答 1

2
 callEjb(Object payload, Map<String, Object> headers) 

如果有效负载是 a Map,则该有效负载同时包含在 thepayloadheaders方法参数中。

要使其正常工作并完全headers符合该Map参数,您应该@Headers在其上使用注释:

 * Annotation which indicates that a method parameter should be bound to the headers of a
 * message. The annotated parameter must be assignable to {@link java.util.Map} with
 * String keys and Object values.
于 2017-07-18T00:44:04.743 回答