362.5. 속도 컨텍스트
Camel은 Velocity 컨텍스트에서 교환 정보를 제공합니다( 맵
조정). 교환은 다음과
같이 전송됩니다.
key | value |
---|---|
|
|
|
|
| In 메시지의 헤더입니다. |
| Camel 컨텍스트 인스턴스입니다. |
| In 메시지입니다. |
| In 메시지입니다. |
| 메시지 본문에 있습니다. |
| Out(Out) 메시지(InOut 메시지 교환 패턴에만 해당)입니다. |
| Out(Out) 메시지(InOut 메시지 교환 패턴에만 해당)입니다. |
Camel-2.14부터 메시지 헤더 *CamelVelocityContext *just를 설정하여 사용자 정의 Velocity Context를 직접 설정할 수 있습니다.
VelocityContext velocityContext = new VelocityContext(variableMap); exchange.getIn().setHeader("CamelVelocityContext", velocityContext);