我正在使用node.js构建应用程序,该应用程序与Tomcat服务器通信。当tomcat服务器正在启动时,我不确定Tomcat是否已准备就绪并且已经启动,现在我在Windows和Mac上使用CURL和WGET,超时为2秒,以检查localhost:8080是否已经出现。
有没有更好的方法来做到这一点而不依赖于CURL和WGET?
答案 0 :(得分:2)
建议的方法是在tomcat应用程序上创建一个心跳服务(I.E.一个简单的服务,在它启动时发送OK),并每隔x秒轮询一次。
在应用程序运行时,心跳服务对于监控至关重要,并且有时候应用程序尚未就绪,即使它已经在端口上进行监听(因为正在进行一些繁重的初始化)。
还有其他方法,如果你在同一台服务器上,你可以拖尾catalina.out直到你收到“服务器启动”行。
您可以设置tomcat应用程序以通知服务器它已启动(尽管这意味着tomcat需要知道node.js服务器的url),或者设置某种类型的消息队列(如ApacheMq等),您可以注册当tomcat启动时,这也将允许两个服务之间的推送消息。
答案 1 :(得分:2)
你可以实现一个httpWatcher(模仿文件观察者的合同--fs.watch)。它可以轮询http端点(状态路由或html文件),并在返回200时(或达到最大运行时)触发回调。像这样:
var request = require('request');
var watch = function(uri) {
var options;
var callback;
if ('object' == typeof arguments[1]) {
options = arguments[1];
callback = arguments[2];
} else {
options = {};
callback = arguments[1];
}
if (options.interval === undefined) options.interval = 2000;
if (options.maxRuns === undefined) options.maxRuns = 10;
var runCount = 0;
var intervalId = setInterval(function() {
runCount++;
if(runCount > options.maxRuns) {
clearInterval(intervalId);
callback(null, false);
}
request(uri, function (error, response, body) {
if (!error && response.statusCode == 200) {
clearInterval(intervalId);
callback(null, true);
}
});
}, options.interval);
}
然后像这样使用它:
watch('http://blah.asdfasdfasdfasdfasdfs.com/', function(err, isGood) {
if (!err) {
console.log(isGood);
}
});
或传递选项......
watch('http://www.google.com/', {interval:1000,maxRuns:3},
function(err, isGood) {
if (!err) {
console.log(isGood);
}
});
答案 2 :(得分:1)
好吧,你可以从Node.JS app发出请求:
var http = require("http");
var options = {
host: "example.com",
port: 80,
path: "/foo.html"
};
http.get(options, function(resp){
var data = "";
resp.on("data", function(chunk){
data += chunk;
});
resp.on("end", function() {
console.log(data);
// do something with data
});
}).on("error", function(e){
// HANDLE ERRORS
console.log("Got error: " + e.message);
}).on("socket", function(socket) {
// ADD TIMEOUT
socket.setTimeout(2000);
socket.on("timeout", function() {
req.abort();
// or make the request one more time
});
});
文档: