0
我只知道我在這條路線錯了。 我試圖通過網絡套接字路線返回了一封郵件,但我無法設置駱駝連接密鑰:駱駝set頭像新手錯誤
from("jms:queue:subscriptionValidationError").log("Receiving error message: ${body} ${in.headers.websocket.connectionKey}")
.setHeader(WebsocketConstants.CONNECTION_KEY, simple("${in.headers.websocket.connectionKey}"))
.log("Sending error message: ${body} ${out.headers.websocket.connectionKey}")
.to("websocket://0.0.0.0:9292/subscribeErrors?staticResources=classpath:webapp");
這給了我一個日誌,而無需在第二日誌操作的連接鍵:
Receiving error message: doit suivre "[-a-zA-Z0-9]+\@[-a-zA-Z0-9]+\.[a-zA-Z]+" 60f7cc44-9d9b-4bde-905a-d7d51be7661a
Sending error message: doit suivre "[-a-zA-Z0-9]+\@[-a-zA-Z0-9]+\.[a-zA-Z]+"
你能告訴我我哪裏錯了嗎?
在此先感謝
好吧,但我認爲這裏頭從一個消息複製到另一個。我的函數的簽名是'@InOut public String subscriptionValidationErro(String in){...}' – Tcharl