这是对prior SO post。
的跟进 Spring 3.2已弃用AnnotationMethodHandlerAdapter
代替RequestMappingHandlerAdapter
。在Spring 3.2之前,我能够使用AnnotationMethodHandlerConfigurer
来配置PathMatcher,但我似乎无法在Spring 3.2中找到它。
有一个RequestMappingHandlerMapping
课程可自定义RequestMappingHandlerAdapter
,但我看不到如何指定自定义PathMatcher
。坦率地说,我找不到Spring 3.2中使用PathMatcher的位置。
有人能指出我正确的方向吗?
作为未来遇到此问题的人的一个FYI,我还发现这个reference link有一些关于如何通过XML进行此操作的信息,但我尚未对其进行测试。
答案 0 :(得分:1)
方法setPathMatcher
在抽象基类AbstractHandlerMapping
中定义。因此,您可以将RequestMappingHandlerMapping
配置为使用其他PathMatcher
。