使用带有弹簧引导的Angularjs来使用REST

时间:2014-11-14 02:57:47

标签: angularjs spring-boot

$http.get("http://localhost:port/angular").success(function (response){
    alert('in success method');
      $scope.returnValue = response;
  }).error(function(data, status) {
    alert('in ERROR method');
   });

以上是我的控制器

和我的春假服务

@RequestMapping(value ="/angular",method = RequestMethod.GET)
    public @ResponseBody String getRestAngular(){
        return "abcd";
    }

当我调用外部链接时,例如:http://rest-service.guides.spring.io/greeting。它工作正常。

但是,当我打电话给我的本地休息服务时,角度会进入错误块

0 个答案:

没有答案