I am writting app with angular 1.2 and I am trying to call to REST API on local glassfish 3.1. I am calling right that:
app.factory("shopModel", function($resource){
return $resource('http://localhost:8080/Schedule-service/shops', {}, {
    query: 
    {method:'GET', 
        headers: {'Content-Type': 'application/json'} 
        params:{}}
    });
});
But I get an error in my chrome.
XMLHttpRequest cannot load http://localhost:8080/Schedule-service/shops. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access. 
I added to my app config this code but this haven't helped:
app.config(['$httpProvider', function($httpProvider) {
$httpProvider.defaults.useXDomain = true;
delete $httpProvider.defaults.headers.common['X-Requested-With'];
}]);
I don't know what to do. I will by thankful for every tip.
Edit. I added headers_module to my apache wamp. And I added to my httpd.conf file this:
<IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin: *
</IfModule>
But still don't work. Any suggestions??
Edit2. Ok I resolve It. I've added this filter to my Spring web:
 public class CorsFilter extends OncePerRequestFilter {
 @Override
    protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
            throws ServletException, IOException {
    response.addHeader("Access-Control-Allow-Origin", "*");
    response.addHeader("Access-Control-Allow-Methods",
            "GET, POST, PUT, DELETE, OPTIONS");
    response.addHeader("Access-Control-Allow-Headers",
            "origin, content-type, accept, x-requested-with, sid, mycustom, smuser");
        filterChain.doFilter(request, response);
    }
}
Thanks Quentin.
 
     
     
    