从Java Script到Angular将一个实例连接到另一个实例

时间:2019-05-10 13:19:02

标签: java angularjs spring tomcat deployment

我有两个应用程序:
   1.在实例X Web服务器1-http://localhost:8080/Route.Js

上运行的基于web.xml的基本servlet应用程序
  1. 基于角度的应用程序也在同一实例X Web服务器2上运行-http://localhost:4200/Primary

因此,从应用程序1,Js文件中,我们需要决策过程来发送/重定向到有角度的应用程序。我尝试了以下选项。

选项1:

var xhr = new XMLHttpRequest();
 xhr.open("GET", "http://localhost:4200/Primary", true);
 xhr.withCredentials = true;
 xhr.send();

选项2:

  jQuery.ajax({
            url : "http://localhost:4200/Primary",
            type : "POST",
            cache : false,
            async : false,
            success : function(data, textStatus, jqXHR)
            {
                alert("sucess..");

            },

            error : function(jqXHR, textStatus, errorThrown)
            {

                alert("failure..");
            }
        });

Option2引发以下错误:
          XMLHttpRequest:网络错误0x80070005,访问被拒绝。

我在网上尝试了很多,但现在确定如何解决此问题? 预先感谢

0 个答案:

没有答案