Some explanation has been posted in comments to SPR-9218.
Type: Posts; User: vypedrik; Keyword(s):
Some explanation has been posted in comments to SPR-9218.
This code works in 3.0 but doesn't in 3.1:
@RequestMapping("/test")
public Object test(@RequestParam boolean flag) {
if (flag) {
return "redirect:/";
}...
I've noticed a significant difference in processing of controller methods introduced in 3.1, what stops me from migration from 3.0.
In 3.0, method return values were observed to determine the...