找不到404:Angular 2无法与Spring Rest API对话

时间:2016-11-27 01:13:26

标签: spring rest angular

我在内存数据库中关注了Angular 2的英雄之旅教程。然后我创建了一个Spring后端来提供数据,并希望将Angular2与Spring的Rest API集成。

在英雄之旅中,我只更改了hero.service.ts中的一行代码:

/* private heroesUrl = 'app/heroes'; */
private heroesUrl = 'http://localhost:8080/api/hero/all';

我更改的链接是Spring服务端点,如果我在浏览器中键入链​​接,它将返回JSON数据:[{"id":1,"name":"test"}]

然而,我在英雄之旅中遇到错误:

EXCEPTION: Uncaught (in promise): Response with status: 404 Not Found for URL: null

localhost:8080上运行的Angular应用程序找不到localhost:3000的弹簧端点。可能是什么问题?

1 个答案:

答案 0 :(得分:3)

这是前一段时间被问过的,但可能有人发现它很有用。

从package.json中删除以下依赖项:

"angular-in-memory-web-api": "~0.2.4",

将其从node_modules目录中删除,删除所有InMemoryWebApiModule以及InMemoryWebApiModuleInMemoryDataService相关代码。