Also, you have configured a route to support OPTIONS:
route() .from("/mycars") .on(RequestMethod.OPTIONS, RequestMethod.GET) .produces(JSON, JSP) .to(Cars.class).mycars();
Also, you have configured a route to support OPTIONS:
route()
.from("/mycars")
.on(RequestMethod.OPTIONS, RequestMethod.GET)
.produces(JSON, JSP)
.to(Cars.class).mycars();