您好,登錄后才能下訂單哦!
這篇文章主要講解了如何實(shí)現(xiàn)Javaweb請(qǐng)求轉(zhuǎn)發(fā)及重定向,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
請(qǐng)求轉(zhuǎn)發(fā):在同一個(gè)controller將請(qǐng)求轉(zhuǎn)發(fā)到另一個(gè)請(qǐng)求映射,請(qǐng)求地址不會(huì)發(fā)生改變
//請(qǐng)求轉(zhuǎn)發(fā) @RequestMapping("/testFoeward") //@ResponseBody public String testforWard1() { System.out.println("testforWard1執(zhí)行了"); return"forward:/test";// 請(qǐng)求轉(zhuǎn)發(fā)到/test } @RequestMapping("/test") public String testforWard2() { System.out.println("testforward2執(zhí)行了"); return"hello";//跳轉(zhuǎn)到hello.jsp }
重定向:將請(qǐng)求重定向到不同的controller
//重定向 /* * (1)可以從當(dāng)前controller中的方法重定向到另一個(gè)controller方法 * [return " redirect:/資源路徑"] * 請(qǐng)求轉(zhuǎn)發(fā)路徑會(huì)發(fā)生改變 */ @RequestMapping("/testRedirect") public String testredirect1() { System.out.println("testRedirect執(zhí)行了"); return "redirect:http://localhost:8080/day_22/test"; //return "redirect:http://www.baidu.com";重定向到百度 }
看完上述內(nèi)容,是不是對(duì)如何實(shí)現(xiàn)Javaweb請(qǐng)求轉(zhuǎn)發(fā)及重定向有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。