Fix logic error in ErrorPageFilter (fixes gh-1149)

This commit is contained in:
Dave Syer
2014-06-25 08:46:59 +01:00
parent 91bbd20ca0
commit b0bf9c776f
3 changed files with 47 additions and 3 deletions

View File

@@ -36,4 +36,9 @@ public class WelcomeController {
return "welcome";
}
@RequestMapping("/foo")
public String foo(Map<String, Object> model) {
throw new RuntimeException("Foo");
}
}