ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
**1.跳转百度** ~~~ @RequestMapping("fun7") public String fun7(){ return "redirect:http://www.baidu.com"; } ~~~ **2.跳转内部jsp页面** ~~~ @RequestMapping("fun7") public String fun7(){ //webapp是根目录 return "redirect:/index.jsp"; } ~~~ 3.使用ServletApi跳转内部jsp页面 ~~~ @RequestMapping("fun8") public void fun8(HttpServletRequest request, HttpServletResponse response){ try{ response.sendRedirect(request.getContextPath()+"/index.jsp"); }catch(IOException e){ e.printStackTrace(); } } ~~~