我想使用Spring MVC用我的 Controller 拦截OPTIONS请求,但是DispatcherServlet捕获了该请求。我该如何处理?

最佳答案

@RequestMapping(value="/youroptions", method=RequestMethod.OPTIONS)
public View getOptions() {

}

您应通过将dispatcherServlet的dispatchOptionsRequest设置为true来配置

10-03 00:36