当前位置: 首页 > 编程笔记 >

Spring mvc结果跳转方法详解

严亮
2023-03-14
本文向大家介绍Spring mvc结果跳转方法详解,包括了Spring mvc结果跳转方法详解的使用技巧和注意事项,需要的朋友参考一下

ModelAndView

设置ModelAndView对象 , 根据view的名称 , 和视图解析器跳到指定的页面 .

页面 : {视图解析器前缀} + viewName +{视图解析器后缀}

<!-- 视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
   id="internalResourceViewResolver">
  <!-- 前缀 -->
  <property name="prefix" value="/WEB-INF/jsp/" />
  <!-- 后缀 -->
  <property name="suffix" value=".jsp" />
</bean>

对应的controller类

public class ControllerTest1 implements Controller {

  public ModelAndView handleRequest(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception {
    //返回一个模型视图对象
    ModelAndView mv = new ModelAndView();
    mv.addObject("msg","ControllerTest1");
    mv.setViewName("test");
    return mv;
  }
}

ServletAPI

通过设置ServletAPI , 不需要视图解析器 .

  • 通过HttpServletResponse进行输出
  • 通过HttpServletResponse实现重定向
  • 通过HttpServletResponse实现转发
@Controller
public class ResultGo {

  @RequestMapping("/result/t1")
  public void test1(HttpServletRequest req, HttpServletResponse rsp) throws IOException {
    rsp.getWriter().println("Hello,Spring BY servlet API");
  }

  @RequestMapping("/result/t2")
  public void test2(HttpServletRequest req, HttpServletResponse rsp) throws IOException {
    rsp.sendRedirect("/index.jsp");
  }

  @RequestMapping("/result/t3")
  public void test3(HttpServletRequest req, HttpServletResponse rsp) throws Exception {
    //转发
    req.setAttribute("msg","/result/t3");
    req.getRequestDispatcher("/WEB-INF/jsp/test.jsp").forward(req,rsp);
  }

}

SpringMVC

通过SpringMVC来实现转发和重定向 - 无需视图解析器;

测试前,需要将视图解析器注释掉

@Controller
public class ResultSpringMVC {
  @RequestMapping("/rsm/t1")
  public String test1(){
    //转发
    return "/index.jsp";
  }

  @RequestMapping("/rsm/t2")
  public String test2(){
    //转发二
    return "forward:/index.jsp";
  }

  @RequestMapping("/rsm/t3")
  public String test3(){
    //重定向
    return "redirect:/index.jsp";
  }
}

通过SpringMVC来实现转发和重定向 - 有视图解析器;

重定向 , 不需要视图解析器 , 本质就是重新请求一个新地方嘛 , 所以注意路径问题.

可以重定向到另外一个请求实现

@Controller
public class ResultSpringMVC2 {
  @RequestMapping("/rsm2/t1")
  public String test1(){
    //转发
    return "test";
  }
  @RequestMapping("/rsm2/t2")
  public String test2(){
    //重定向
    return "redirect:/index.jsp";
    //return "redirect:hello.do"; //hello.do为另一个请求/
  }

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文向大家介绍springMvc请求的跳转和传值的方法,包括了springMvc请求的跳转和传值的方法的使用技巧和注意事项,需要的朋友参考一下 forword跳转页面的三种方式: 1.使用serlvet 2.使用Model对象 3.使用ModelAndView 当然也可以通过new 一个ModelAndView对象来实现 forword跳转到Controller中的方法: 跳转到相同类中的方法 跳

  • 本文向大家介绍详解SpringMVC的类型转换及验证方法,包括了详解SpringMVC的类型转换及验证方法的使用技巧和注意事项,需要的朋友参考一下 Spring mvc 数据绑定流程: SpringMvc将ServletRequest对象及目标方法的形参实例传给WebDataBinderFactory实例,以创建DataBinder实例对象。DataBinder调用装配在SpringMvc上下文中

  • 本文向大家介绍详解nginx 301跳转到带www域名方法,包括了详解nginx 301跳转到带www域名方法的使用技巧和注意事项,需要的朋友参考一下 前提:在域名解析中添加 domain.com 和 www.domain.com 指向你的主机IP地址 方法1. 打开 nginx.conf 文件找到你的server配置段: 方法2. 在配置文件里面写两个server,domain.com指向www

  • 本文向大家介绍详解django使用include无法跳转的解决方法,包括了详解django使用include无法跳转的解决方法的使用技巧和注意事项,需要的朋友参考一下 一般的django项目我都喜欢采用以下的文件结构,使用include的方式,实现从总的url分配给apps里面的url Example: 但突然发现无法跳转,竟然是总url的这个错误! 以下是错误做法 以下是正确做法,主要问题在于u

  • 打开UserModule类,添加一个方法 @GET @At("/login") @Filters @Ok("jsp:jsp.user.login") // 降内部重定向到登录jsp public void loginPage() {} 含义是, 访问这个路径的GET请求,将会转发到 /WEB-INF/jsp/user/login.jsp

  • 本文向大家介绍Fragment跳转时传递参数及结果回传的方法(推荐),包括了Fragment跳转时传递参数及结果回传的方法(推荐)的使用技巧和注意事项,需要的朋友参考一下 今天总结一下Fragment间的参数传递及结果返回的方法。 效果图: 1、点击“加载第二个Fragment按钮”,加载出第二个Fragment,同时传递过去参数:“从Fragment1传来的参数”这几个String; 2、当用户