如果在拦截请求中,我想拦截 get 方式提交的方法,怎么配置?

答案解析

在拦截器配置中判断request.getMethod(),或用@RequestMapping(method=RequestMethod.GET)限定方法。