I use jersey as my soothing api implementation. In the interface, I use angularjs $ http service to make an http request. When I request a delete method, I always got the error below.
"Method DELETE is not allowed by Access-Control-Allow-Methods in preflight response."
I read several articles and they say that I need to allow deletion in "Access-Control-Allow-Methods". I have configured the response filter as shown below, but it still has such a problem. What else should I do?
@Provider public class CORSResponseFilter implements ContainerResponseFilter { @Override public void filter(ContainerRequestContext requestContext, ContainerResponseContext responseContext) throws IOException { MultivaluedMap<String, Object> headers = responseContext.getHeaders(); headers.add("Access-Control-Allow-Origin", "*"); headers.add("Access-Control-Allow-Methods", "*"); } }
below is my angular code to make a request:
$http({ method: 'DELETE', url: remoteUrl, headers : {'Content-Type': 'application/x-www-form-urlencoded;charset=utf-8', 'ACCESS_TOKEN' : $cookieStore.get("access_token") }, data : $httpParamSerializer({ 'id':id }) }).success(function(data,status,headers,config) { $scope.refreshDepartments(); console.log(data); alert("success"); }).error(function(data,status,headers,config){ console.log(data); alert("error"); });
java angularjs jersey cors
Zhao yi
source share