欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

springboot如何重定向携带数据 RedirectAttributes

程序员文章站 2022-03-23 23:42:19
目录redirectattributes的使用redirectattributes存值后读取不到当controller层需要重定向到指定页面时,如何携带数据? 传统使用session 使用...

当controller层需要重定向到指定页面时,如何携带数据?

  • 传统使用session
  • 使用redirectattributes. (利用session原理)

优点:提供了addflashattribute 等方法.确保数据只能被使用一次后删除

redirectattributes的使用

public interface redirectattributes extends model {
    redirectattributes addattribute(string var1, @nullable object var2);
    redirectattributes addattribute(object var1);
    redirectattributes addallattributes(collection<?> var1);
    redirectattributes mergeattributes(map<string, ?> var1);
    redirectattributes addflashattribute(string var1, @nullable object var2);
    redirectattributes addflashattribute(object var1);
    map<string, ?> getflashattributes();
}
  • 直接在controller的参数中添加redirectattributes.
  • addflashattribute会在重定向到下一个页面取出这个数据以后,将session里面的数据删除\
  • addflashattribute 方法会将数据存储在session中,访问一次后失效
@postmapping("/regist")
public string register(redirectattributes attribdatautes){
    int data = 1;
    attributes.addflashattribute("data",data);
    return "redirect:http://auth.gulimail.com/reg.html";
}
  • addattribute 方法会将数据拼接在url后(get的形式)
@getmapping("/addtocartsuccess.html")
    public string addtocartsuccesspagez(@requestparam("skuid") long skuid,model model){
        cartitem cartitem = cartservice.selectcartiteminfo(skuid);
        model.addattribute("item",cartitem);
        return "success";
    }

redirectattributes存值后读取不到

首先,检查controller上面是@controller还是@restcontroller(两者区别自行百度)

其次,如下

@getmapping("/redirect")
public string redirect(redirectattributes redirectattributes)
{
    redirectattributes.addflashattribute("test", 1);
    return "redirect:/show";
}
 
@getmapping("/show")
@responsebody
//必须要添加@modelattribute标签,否侧将读不到值
//且必须指定变量名,并不会自动做匹配
public map<string, object> show(@modelattribute("test") int test)
{
    map<string, object> modelmap = new hashmap<>();
    modelmap.put("string", test);
    return modelmap;
}

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。