Я подал заявку с jhipster
, и я хочу вызвать свой jhipster api в другом приложении, но я не могу понять, как это сделать
getIconFromJhipsterAPi() {
this.httpClient.get<any[]>('http://localhost:9000/api/icons')
.subscribe(
(response) => {
this.icons =response;
},
(error) => {
console.log( error );
}
);
}