Among the below two methods, which one gets called first?
@RequestMapping(method = RequestMethod.POST, params="continue")
public String save(){
}
@RequestMapping(method = RequestMethod.POST, params="continuesave")
public String saveReview(){
}
Params sent in POST request include:
continue, continuesave="true"
In my local machine, method 1 gets called. But in our prod servers, method 2 is getting called. What is the method calling criteria?