springboot -重定向携带数据 RedirectAttributes
当controller层需要重定向到指定页面时,如何携带数据?
- 传统使用session
- 使用RedirectAttributes. (利用session原理)
- 优点: 提供了addFlashAttribute 等方法.确保数据只能被使用一次后删除
RedirectAttributes的使用
public interface RedirectAttributes extends Model {
RedirectAttributes addAttribute(String var1, @Nullable Object var2);
Redir