如何在Spring MVC中通过RedirectAttributes传递重定向后的数据

在Spring MVC中,可以使用RedirectAttributes来传递重定向后的数据。下面是一个简单的示例:

@Controllerpublic class MyController { @RequestMapping("/redirect") public String redirectToPage(RedirectAttributes redirectAttributes) { // 添加重定向后的数据 redirectAttributes.addFlashAttribute("message", "Redirected successfully!"); return "redirect:/targetPage";
    } @RequestMapping("/targetPage") public String targetPage(@ModelAttribute("message") String message) { // 获取重定向前传递的数据 System.out.println("Message: " + message); return "targetPage";
    }
}

在上面的示例中,redirectToPage方法重定向到targetPage页面,并将消息"Redirected successfully!"通过RedirectAttributes传递给targetPage页面。在targetPage方法中,可以通过@ModelAttribute注解获取重定向前传递的数据并进行处理。

需要注意的是,RedirectAttributes中添加的数据使用addFlashAttribute方法,这样可以确保数据只在重定向过程中传递,在目标页面中可以通过@ModelAttribute注解获取到这些数据。

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:niceseo6@gmail.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

评论

有免费节点资源,我们会通知你!加入纸飞机订阅群

×
天气预报查看日历分享网页手机扫码留言评论Telegram