Java Web应用程序节点集成问题

时间:2013-10-07 16:31:28

标签: spring node.js jquery rest express

我有一个Web应用程序正在向我的node.js发送请求。 Node模块正在调用我的Spring REST模块。 我的网络应用程序到节点调用如下

$.ajax({ 
        type : "POST", 
        url : "http://localhost:9090/module", 
        dataType : 'json', 
        data : msgDetails, 
        xhrFields : { withCredentials : true }, 
        success : function(data) {
        console.log("getInbox" + JSON.stringify(data.message));
  }, error : function(data) {
        alert("Error in the AJAX response." + data);
  } });

我的节点如下

var express = require("express"), 
app = express(), 
http = require("http").createServer(app);

var requestObj = require('request');  
responseBody = "";
indexresponseBody = null;
app.use(express.bodyParser());

app.post('/module', function(req, res){
    var tempInbox = "";
    var tmp = req;
    var authKey = req.body.pubKey;
    var reqBody = req.body;
    console.log("POST"+" - "+JSON.stringify(reqBody)+" - "+authKey);
    restCMCall("http://ip:port/restmodule/controller/call", req, res,authKey,reqBody);
    //res.end(JSON.stringify(body));
    res.header('Content-Type', 'application/json');
    //resp.header('Charset', 'utf-8');
    res.send({"name1":"name"});
});


function restCMCall(resturl, req, res, authKey,reqBody){
var i = 0;
console.log("reqBody :- "+reqBody+" resturl "+resturl+" "+i++);
requestObj({
    url : resturl,
    method : "POST",
    headers : { "Content-Type" : "application/json","pubKey":authKey},
    body : JSON.stringify(reqBody)
},
function (error, resp, body) {
    tempInbox = body;
    console.log(resp+" inbox body :- "+"   -------- "+i++);
    //resp.writeHead(200, {'Content-Type':'application/json','charset':'UTF-8'});
    //res.write(JSON.stringify({"hello":"xxx"}));  
    //res.end(JSON.stringify(body));
    res.header('Content-Type', 'application/json');
    //resp.header('Charset', 'utf-8');
    res.send(body);
}
);
    console.log(i++);
}

直到现在我能够从spring模块获得响应,并且能够在节点控制台上打印。但是,当我尝试添加此响应以响应Web应用程序发出的请求时,它就不会被发送。

在Firefox浏览器中,它显示为

Response Headers
Connection  keep-alive
Content-Length  21
Content-Type    application/json
Date    Mon, 07 Oct 2013 16:13:38 GMT
X-Powered-By    Express

但响应标签为空白。

我使用express模块​​调用spring rest web service调用node.js。

如果我遗漏了什么,请告诉我。我也尝试过使用

response.json(body)

但这也行不通。

1 个答案:

答案 0 :(得分:0)

我相信您应该向url : "http://localhost:9090/getInbox"提出请求,因为您尚未在Node应用中创建与POST: /module匹配的端点