Я использую Angular 9 и SpringBoot, когда я интегрирую Angular 9 с SpringBoot в Eclipse и перезапускаю оба проекта, и когда я нажимаю localhost: 4200 / api / hi, выдается ошибка:
"Error occured while trying to proxy to: localhost:4200/api/hi"
Я не понимаю, где я допустил ошибку, почему эта проблема показывает:
[HPM] Error occurred while trying to proxy request /api/hi from
localhost:4200 to http://localhost:8080 (ECONNREFUSED)
(https://nodejs.org/api/errors.html#errors_common_system_errors)
Мой proxy.conf.json
:
{
"/api": {
"target": "http://localhost:8080",
"secure": false
}
}
Мой package.json
:
"scripts": {
"ng": "ng",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"start": "ng serve --proxy-config proxy.conf.json",
"build": "ng build --prod --aot --buildOptimizer --commonChunk --vendorChunk --optimization --progress",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},