其他两个软件之间有一个中间件。在中间件中,我通过Apache ActiveMQ
路由Apache Camel
条消息。
第一个软件使用中间件向第3个软件发送消息,第3个软件将消息回复给第一个软件(使用中间件)。
1stSoftware <<=>> Middleware <<=>> 3rdSoftware
问题:
当第一个我向中间件发送消息时,中间件将该消息直接发送到ActiveMQ.DLQ
,第三个消息不能消耗它!(有趣的是这个:当我将该消息复制到主队列时使用Admin panel of ActiveMQ
,软件可以正常使用它!)
有什么问题?!它一直在工作,直到我改变Linux日期!!!!!!!
中间件是这样的:
@SuppressWarnings("deprecation")
public class MiddlewareDaemon {
private Main main;
public static void main(String[] args) throws Exception {
MiddlewareDaemon middlewareDaemon = new MiddlewareDaemon();
middlewareDaemon.boot();
}
public void boot() throws Exception {
main = new Main();
main.enableHangupSupport();
//?wireFormat.maxInactivityDuration=0
main.bind("activemq", activeMQComponent("tcp://localhost:61616")); //ToGet
main.bind("activemq2", activeMQComponent("tcp://192.168.10.103:61616")); //ToInOut
main.addRouteBuilder(new MyRouteBuilder());
System.out.println("Starting Camel(MiddlewareDaemon). Use ctrl + c to terminate the JVM.\n");
main.run();
}
private static class MyRouteBuilder extends RouteBuilder {
@Override
public void configure() throws Exception {
intercept().to("log:Midlleware?level=INFO&showHeaders=true&showException=true&showCaughtException=true&showStackTrace=true");
from("activemq:queue:Q.Midlleware")
.process(new Processor() {
public void process(Exchange exchange) {
Map<String, Object> header = null;
try {
Message in = exchange.getIn();
header = in.getHeaders();
} catch (Exception e) {
log.error("Exception:", e);
header.put("Midlleware_Exception", e.getMessage() + " - " + e);
}
}
})
.inOut("activemq2:queue:Q.Comp2")
}
}
}
第三个软件(Replier):(这是一个像上面这样的守护进程,我只是复制了RouteBuilder
部分)
private static class MyRouteBuilder extends RouteBuilder {
@Override
public void configure() {
intercept().to("log:Comp2?level=INFO&showHeaders=true&showException=true&showCaughtException=true&showStackTrace=true");
from("activemq:queue:Q.Comp2")
.process(new Processor() {
public void process(Exchange exchange) {
Message in = exchange.getIn();
Map<String, Object> headers = null;
try {
headers = in.getHeaders();
in.setBody(ZipUtil.compress(/*somResults*/));
} catch (Exception e) {
log.error("Exception", e);
in.setBody(ZipUtil.compress("[]"));
in.getHeaders().put("Comp2_Exception", e.getMessage() + " - " + e);
}
}
})
;
}
}
答案 0 :(得分:0)
如果您更改的唯一内容是其中一台服务器上的时间,那么这可能就是问题所在。 为了使MQ上的通信正常工作,所有相关主机系统必须将其时钟设置为同步。在ActiveMQ的情况下,响应队列有一个默认的生存时间(我认为是30秒)。如果相对于运行ActiveMQ的主机,响应系统将来超过30秒,那么ActiveMQ将立即使该消息到期并将其移至DLQ。