Why there's no annotation considers the attributes in request scope? @Controller @RequestMapping("/annotation") public class AnnotationController { @RequestMapping("/forward1/{name}") public String controller1(@PathVariable("name") String name, ModelMap modelMap) { modelMap.addAttribute("model_test", "model_test"); return "forward:/annotation/foward2/forward_parameter_test.html"; } @RequestMapping("/foward2/{name}") ...