我遇到了 Spring (3.1) 映射难题:我有一个简单的 findAll 方法:
@RequestMapping( method = RequestMethod.GET )
@ResponseBody
public List< User > findAll(){
return findAllInternal();
}
这映射到以下 URI(这很好)/user
:.
但是它也映射到:/user?bla=8
,这不好。
有没有办法明确指定这个特定映射不包含参数的事实?我试图在中指定params
,@RequestMapping
但我看不到这样做的明确方法。
任何帮助表示赞赏。
谢谢。欧根。