1. 程式人生 > >SpringFramework中重定向

SpringFramework中重定向

好處 技術分享 定向 pos work prefix ren 地址 frame

需求:

  • 需要在兩個@Controller之間跳轉,實現重定向

    解決:

@PostMapping("/files/{path1}")
public String upload(...) {
    // ...
    return "redirect:files/{path2}";
}

多看看官方文檔還是有很多好處
技術分享圖片

Spring文檔鏈接地址:

  • https://docs.spring.io/spring/docs/current/spring-framework-reference/web.html#mvc-redirecting-redirect-prefix

SpringFramework中重定向