欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

springMVC幾種頁面跳轉(zhuǎn)方式小結(jié)

 更新時間:2017年02月20日 16:06:57   作者:你在橋上看風(fēng)景丶  
本篇文章主要介紹了springMVC 幾種頁面跳轉(zhuǎn)方式,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

前面已經(jīng)了解了Controller的幾種配置方式

今天主要寫一下響應(yīng)界面跳轉(zhuǎn)的幾種方式

1.在注解的方式中

1.1通過HttpServletResponse的API直接輸出(不需要配置渲染器)

controller類的主要代碼

@Controller
public class RequestController{
 @RequestMapping("/resp")
  public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {

     resp.getWriter().println("hello HttpServletResponse");

  }

web.xml配置

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
     version="3.1">

  <servlet>
    <servlet-name>dispatcher</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>dispatcher</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>

dispatcher-servlet.xml主要代碼

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="
    http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">

  <!--作用是掃描指定包下所有的包含注解的類-->
  <context:component-scan base-package="com.jsu.mvc"/>

</beans>

1.2 使用HttpServletResponse 重定向到另一個視圖(其他不變 )

  @RequestMapping("/resp")
  public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {

    resp.sendRedirect("index.jsp");

  }
}

1.3 使用HttpServletRequest 轉(zhuǎn)發(fā)(默認(rèn)訪問/下的index.jsp頁面 不受渲染器的影響)

@RequestMapping("/resp")
  public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {
    req.setAttribute("message","it's forword ");
    req.getRequestDispatcher("index.jsp").forward(req,resp);
    }

1.4直接返回jsp頁面的名稱(無渲染器)

其他的配置不變

 @RequestMapping("/nice")
  public String hello1(){
    //轉(zhuǎn)發(fā)方式1
    return "home.jsp";
    //轉(zhuǎn)發(fā)方式2
    return "forward:index.jsp";
    //重定向方式
    return "redirect:index.jsp";
  }

1.5當(dāng)有渲染器指定

 @RequestMapping("/nice")
  public String hello1(){
    //轉(zhuǎn)發(fā)方式1
    return "home";
    //轉(zhuǎn)發(fā)方式2
    return "forward:index";
    //重定向方式 hello指的是requsrmapping
    return "redirect:hello";
  }

2 使用view

2.1 使用modelandview

需要視圖解析器 能指定跳轉(zhuǎn)頁面

public class HelloController implements Controller {


  @Override
  public ModelAndView handleRequest(javax.servlet.http.HttpServletRequest httpServletRequest,
                   javax.servlet.http.HttpServletResponse httpServletResponse) throws Exception {

    ModelAndView mv = new ModelAndView();
    //封裝要顯示到視圖的數(shù)據(jù)
    mv.addObject("msg","hello myfirst mvc");
    //視圖名
    mv.setViewName("hello");
    return mv;

  }
}

[servlet-name]-servlet.xml

<!--配置渲染器-->
  <!--配置hellocontroller中頁面的位置-->

  <bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />
  <bean id="viewResolver"
           class="org.springframework.web.servlet.view.UrlBasedViewResolver">
  <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
  <!--結(jié)果視圖的前綴-->
  <property name="prefix" value="/WEB-INF/jsp/"/>
  <!--結(jié)果視圖的后綴-->
  <property name="suffix" value=".jsp"/>
</bean>
  <bean name="/hello.do" class="com.jsu.mvc.HelloController"></bean>

2.2 使用modelview

不需要視圖解析器 不能指定跳轉(zhuǎn)頁面

 //通過modelmap方式
  @RequestMapping("/modelmap")
  public String modelHello(String name,ModelMap map){
    map.addAttribute("name",name);
    System.out.println(name);

    return "index.jsp";
  }

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Spring中的refreshContext源碼分析

    Spring中的refreshContext源碼分析

    這篇文章主要介紹了Spring中的refreshContext源碼分析,在SpringBoot啟動流程中,主要的兩個階段是初始化SpringApplication對象以及SpringApplication.run方法執(zhí)行的內(nèi)容,今天主要細(xì)講的是SpringApplication.run中的刷新容器refreshContext方法,需要的朋友可以參考下
    2023-12-12
  • Spring中propagation的傳播機制詳解

    Spring中propagation的傳播機制詳解

    這篇文章主要介紹了Spring中propagation的傳播機制詳解,要搞懂事務(wù)的傳播機制,那么就要明白邏輯事務(wù)中各個事務(wù)的關(guān)系,才能徹底理解事務(wù)傳播特性,在Spring事務(wù)中,各個邏輯事務(wù)的關(guān)系可以是并列、覆蓋或包含,需要的朋友可以參考下
    2023-12-12
  • 老生常談java中的fail-fast機制

    老生常談java中的fail-fast機制

    下面小編就為大家?guī)硪黄仙U刯ava中的fail-fast機制。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-08-08
  • Java BeanDefination接口詳細(xì)講解

    Java BeanDefination接口詳細(xì)講解

    BeanDefinition是spring里面bean的一個建模對象,就相當(dāng)于class對象是普通java對象的建模對象一樣??赡茉趕pring作用的各種業(yè)務(wù)場景中,class對象并不能完成spring對bean的抽象,所以弄了一個BeanDefinition作為bean的抽象建模對象
    2022-11-11
  • String s = new String(''a '') 到底產(chǎn)生幾個對象

    String s = new String(''a '') 到底產(chǎn)生幾個對象

    這篇文章主要介紹了String s = new String(" a ") 到底產(chǎn)生幾個對象,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-05-05
  • Spring?Boot自定義監(jiān)控指標(biāo)的詳細(xì)過程

    Spring?Boot自定義監(jiān)控指標(biāo)的詳細(xì)過程

    這篇文章主要介紹了Spring?Boot如何自定義監(jiān)控指標(biāo)?,本文通過實例代碼給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2023-03-03
  • SWT(JFace) 體驗之FontRegistry

    SWT(JFace) 體驗之FontRegistry

    測試代碼如下:
    2009-06-06
  • Java 如何使用正則表達(dá)式去除前導(dǎo)0

    Java 如何使用正則表達(dá)式去除前導(dǎo)0

    這篇文章主要介紹了Java 使用正則表達(dá)式去除前導(dǎo)0的操作,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2021-04-04
  • mybatis自動生成時如何設(shè)置不生成Example類詳解

    mybatis自動生成時如何設(shè)置不生成Example類詳解

    這篇文章主要給大家介紹了關(guān)于mybatis自動生成時如何設(shè)置不生成Example類的相關(guān)資料,文中介紹的非常詳細(xì),對大家具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起看看吧。
    2017-05-05
  • 對Java中JSON解析器的一些見解

    對Java中JSON解析器的一些見解

    這篇文章主要是對Java中JSON解析器的一些見解。需要的朋友可以過來參考下,希望對大家有所幫助
    2013-12-12

最新評論