1

有没有办法在camel + spring-ws中返回自定义主体(例如自定义bean)和http状态为500?

我试过了

onException(RuntimeException.class).handled(true).process(new
     ExceptionProcessor()).marshal(jaxb);

然后在处理器公共类 ExceptionProcessor 中实现 Processor {

@Override
public void process(Exchange exchange) throws Exception {
    RuntimeException e = exchange.getProperty(Exchange.EXCEPTION_CAUGHT, RuntimeException.class);

    ExceptionHandler handler = ExceptionHandlerFactory.fromException(e);
    ExceptionType response = handler.handleException();


    if (exchange.hasOut()) {
        exchange.getOut().setBody(response);
    } else {
        exchange.getIn().getHeaders();
        exchange.getIn().setFault(true);
        exchange.getIn().setBody(response);
    }

}

}

但即使身体是我想要的,http状态总是200。
你能帮帮我吗?

更多信息:我使用的是骆驼版本 2.20.2

4

1 回答 1

0
exchange.setProperty(Exchange.HTTP_RESPONSE_CODE, 500);
exchange.getOut().setFault(true);

应该为你工作。

于 2018-04-04T14:04:10.460 回答