91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot中的重定向是什么意思

發布時間:2021-06-26 09:27:12 來源:億速云 閱讀:129 作者:chen 欄目:大數據

本篇內容介紹了“SpringBoot中的重定向是什么意思”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!


I. 環境搭建

首先得搭建一個web應用才有可能繼續后續的測試,借助SpringBoot搭建一個web應用屬于比較簡單的活;

創建一個maven項目,pom文件如下

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.7</version>
    <relativePath/> <!-- lookup parent from update -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>fastjson</artifactId>
        <version>1.2.45</version>
    </dependency>
</dependencies>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </pluginManagement>
</build>
<repositories>
    <repository>
        <id>spring-milestones</id>
        <name>Spring Milestones</name>
        <url>https://repo.spring.io/milestone</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

依然是一般的流程,pom依賴搞定之后,寫一個程序入口

/**
 * Created by @author yihui in 15:26 19/9/13.
 */
@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class);
    }
}

II. 302重定向

1. 返回redirect

這種case通常適用于返回視圖的接口,在返回的字符串前面添加redirect:方式來告訴Spring框架,需要做302重定向處理

@Controller
@RequestMapping(path = "redirect")
public class RedirectRest {

    @ResponseBody
    @GetMapping(path = "index")
    public String index(HttpServletRequest request) {
        return "重定向訪問! " + JSON.toJSONString(request.getParameterMap());
    }

    @GetMapping(path = "r1")
    public String r1() {
        return "redirect:/redirect/index?base=r1";
    }
}

上面給出了一個簡單的demo,當我們訪問/redirect/r1時,會重定向到請求/redirect/index?base=r1,實際測試結果如下

SpringBoot中的重定向是什么意思

注意上面的截圖,我們實際訪問的連接是 http://127.0.0.1:8080/redirect/index?base=r1,在瀏覽器中的表現則是請求url變成了http://127.0.0.1:8080/redirect/index?base=r1;通過控制臺查看到的返回頭狀態碼是302

說明

  • 使用這種方式的前提是不能在接口上添加@ResponseBody注解,否則返回的字符串被當成普通字符串處理直接返回,并不會實現重定向

2. HttpServletResponse重定向

前面一篇說到SpringMVC返回數據的時候,介紹到可以直接通過HttpServletResponse往輸出流中寫數據的方式,來返回結果;我們這里也是利用它,來實現重定向

@ResponseBody
@GetMapping(path = "r2")
public void r2(HttpServletResponse response) throws IOException {
    response.sendRedirect("/redirect/index?base=r2");
}

從上面的demo中,也可以看出這個的使用方式很簡單了,直接調用javax.servlet.http.HttpServletResponse#sendRedirect,并傳入需要重定向的url即可

SpringBoot中的重定向是什么意思

3. 小結

這里主要介紹了兩種常見的后端重定向方式,都比較簡單,這兩種方式也有自己的適用場景(當然并不絕對)

  • 在返回視圖的前面加上redirect的方式,更加適用于視圖的跳轉,從一個網頁跳轉到另一個網頁

  • HttpServletResponse#sendRedirec的方式更加靈活,可以在后端接收一次http請求生命周期中的任何一個階段來使用,比如有以下幾種常見的場景

    • 某個接口要求登錄時,在攔截器層針對所有未登錄的請求,重定向到登錄頁面

    • 全局異常處理中,如果出現服務器異常,重定向到定制的500頁面

    • 不支持的請求,重定向到404頁面

“SpringBoot中的重定向是什么意思”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

望奎县| 伊宁市| 拜泉县| 化州市| 凤庆县| 堆龙德庆县| 灌云县| 巴彦淖尔市| 临朐县| 双柏县| 竹山县| 涞源县| 思茅市| 徐州市| 千阳县| 衡阳县| 平利县| 台南县| 隆安县| 正宁县| 涞水县| 凤台县| 河源市| 砚山县| 雷山县| 班玛县| 张家川| 曲阜市| 光泽县| 平江县| 福州市| 芜湖县| 洛扎县| 六盘水市| 青神县| 鄂托克前旗| 晋宁县| 许昌县| 长武县| 苍山县| 武陟县|