关于Spring MVC 2.5的Params Annotation的问题
项目的新版本开始采用Spring MVC 2.5了,前期也跑了sample,做了一些测试,没有发现什么问题。但是最近随着项目开发,Controller增多后,发现Annotation中的params参数有时候会出现一些问题。
比如:
@RequestMapping(value="/test", method=RequestMethod.GET, params="id")
public String action1() {
...
}
@RequestMapping(value="/test", method=RequestMethod.GET, params="otherId")
public String action2() {
...
}
@RequestMapping(value="/test", method=RequestMethod.GET)
public String action3() {
...
}
访问的时候/test, /test?id=1和/test?otherId=2这几种访问,在有的控制器中运行正常,有些控制器中处理不正常,全部映射到action3去了。
不知道是不是params的使用方式有问题?遍查spring 2.5相关资料,也没有看到答案。
spring、spring mvc版本是2.5.2
后记
于2013.01.06 » 迁移自tanbamboo.iteye.com博客