您好,登錄后才能下訂單哦!
這篇文章主要介紹如何實現controller接口跳轉到另一個controller接口,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
@RestController @RequestMapping("/aaa") public class TestController{ @RequestMapping("/test1") public ModelAndView test1(HttpServletResponse response) { ModelAndView view = new ModelAndView(); view.setViewName("redirect:/aaa/test2"); // try { // response.sendRedirect("/test2"); // } catch (IOException e) { // e.printStackTrace(); // } return view ; } @RequestMapping("/test2") public ModelAndView test2() { System.out.println("this is test2"); } }
1、不可以直接以類的方式調用
2、可以通過url 轉發的方式,傳遞到另外一個Controller類中運行
3、在Controller 中注入的 service,如果直接用來作為實例變量傳遞會報空值
4、注意Controller 層不處理繁雜的邏輯,邏輯當交給Service層處理
5、靜態資源映射,也就是靜態資源放行,在前端控制器 攔截為 "/" 時,需要對.js, .jpg, .css 等靜態資源放行
6、/*,會造成jsp,js,jpg,。。。都被攔截,無法執行,一般不采用
以上是“如何實現controller接口跳轉到另一個controller接口”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。