I can call delete for an event successfully using postman
http://localhost:8080/test/api/events/18
{"Content-Type":"application/json"}
and it works.
I make call on same url from angular 2 app like following:
let headers = new Headers({ 'Content-Type': 'application/json' });
let options = new RequestOptions({ headers: headers });
let url = "http://localhost:8080/test/api/events/18";
this.http.delete(url, options);
or
this.http.delete(url)
is not reaching server.