我想使用Spring MVC用我的控制器拦截OPTIONS请求,但是DispatcherServlet捕获了该请求。我该如何处理?
@RequestMapping(value="/youroptions", method=RequestMethod.OPTIONS) public View getOptions() { }
您应该通过将其设置为dispatchOptionsRequest来配置dispatcherServlettrue
dispatchOptionsRequest
true