为什么我需要把*放在Spring MVC的值中?

时间:2015-03-31 13:36:40

标签: java spring spring-mvc

很抱歉,如果这是一个愚蠢的问题:使用之前Spring MVC没有问题(没有*)。我想为什么需要*。代码工作正常,但如果getPlanilha具有相同的RequestMethodConsumes将执行create方法?由*引起,因为两者将具有相同的值(/planilha/anything

@RequestMapping(value = "/planilha/*", method = RequestMethod.POST, consumes = "application/json")
public String create(HttpServletRequest request, @RequestBody String jsonStr) {

}

@RequestMapping(value = "/planilha/{id}", method = RequestMethod.GET)
public String getPlanilha(@PathVariable("id") String id) {

}

0 个答案:

没有答案