在以下两种方法中,首先调用的是哪一种?
@RequestMapping(method = RequestMethod.POST, params="continue")
public String save(){
}
@RequestMapping(method = RequestMethod.POST, params="continuesave")
public String saveReview(){
}
POST 请求中发送的参数包括:
继续, continueave="true"
在我的本地机器中,方法 1 被调用。但是在我们的产品服务器中,方法 2 被调用。方法调用标准是什么?