Angularjs $http spring rest controller – 404 error
I am getting 404 error on making a $http call from angularjs to spring controller, here is the code : Factory : factory.checkCodeAvail = function(url){ return $http({ url: url, responseType:"json", method: "GET", headers: { "Content-Type": "application/json" } }); } This factory method is called by controller : commonFactory.checkCodeAvail('findDepartment') .then(function (success){ console.log(success); },function (error){ console.log(error); }); This is the error i m getting in browser console : GET http://localhost:8080/TexERP/findDepartment 404 () Spring controller : @RestController public class AdminController { private static final Logger logger = LoggerFactory.getLogger(AdminController.class); @RequestMapping(value=...