Controller之间的跳转

时间:2022-6-12    作者:老大夫    分类: JAVA


Controller之间的跳转分为 转发和重定向
redict:浏览器地址不会变,视为一次请求
forward:浏览器地址会变,视为再次请求

需要跳转到其他Controller 方法中 只需要在return 字符串中 加上 redict:

    @RequestMapping("/libraryCard/creatCard")
    String creatLibraryCard(){

        return  "redirect:/librarycard";
    }

引用: https://www.jb51.net/article/221562.htm

标签: springboot controller


扫描二维码,在手机上阅读

推荐阅读: