大战熟女丰满人妻av-荡女精品导航-岛国aaaa级午夜福利片-岛国av动作片在线观看-岛国av无码免费无禁网站-岛国大片激情做爰视频

專注Java教育14年 全國(guó)咨詢/投訴熱線:400-8080-105
動(dòng)力節(jié)點(diǎn)LOGO圖
始于2009,口口相傳的Java黃埔軍校
首頁(yè) hot資訊 SpringMVC頁(yè)面跳轉(zhuǎn)的方式

SpringMVC頁(yè)面跳轉(zhuǎn)的方式

更新時(shí)間:2021-09-10 09:47:23 來源:動(dòng)力節(jié)點(diǎn) 瀏覽1265次

1.在注解的方式中

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

@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>

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

    @RequestMapping("/resp")
    public void handleRequest(HttpServletRequest req, HttpServletResponse resp) throws Exception {
        resp.sendRedirect("index.jsp");
    }
}

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

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

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

其他的配置不變

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

(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

(1)使用modelandview

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中頁(yè)面的位置-->
    <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)使用modelview

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

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

以上就是動(dòng)力節(jié)點(diǎn)小編介紹的"SpringMVC頁(yè)面跳轉(zhuǎn)的方式",希望對(duì)大家有幫助,想了解更多可查看SpringMVC教程。動(dòng)力節(jié)點(diǎn)在線學(xué)習(xí)教程,針對(duì)沒有任何Java基礎(chǔ)的讀者學(xué)習(xí),讓你從入門到精通,主要介紹了一些Java基礎(chǔ)的核心知識(shí),讓同學(xué)們更好更方便的學(xué)習(xí)和了解Java編程,感興趣的同學(xué)可以關(guān)注一下。

提交申請(qǐng)后,顧問老師會(huì)電話與您溝通安排學(xué)習(xí)

  • 全國(guó)校區(qū) 2025-04-24 搶座中
  • 全國(guó)校區(qū) 2025-05-15 搶座中
  • 全國(guó)校區(qū) 2025-06-05 搶座中
  • 全國(guó)校區(qū) 2025-06-26 搶座中
免費(fèi)課程推薦 >>
技術(shù)文檔推薦 >>
主站蜘蛛池模板: 久久精选视频 | 久久机热re这里只有精品15 | 91手机视频 | 又黑又粗又硬欧美视频在线观看 | 欧美综合图片区 | 欧美香蕉视频在线观看 | 亚洲一欧洲中文字幕在线 | 国产精选91热在线观看 | 欧美深夜影院 | 99热这就是里面只有精品 | 亚洲国产精品成 | 神马影院在线观看我不卡 | 正在播放一区二区 | 久久国产在线观看 | 中国女人18毛片 | 奇米综合 | 手机在线一区二区三区 | 农村女人十八毛片a级毛片 农村三级孕妇视频在线 | 麻豆精品久久久 | 免费香蕉一区二区在线观看 | 日本不卡一 | 91久久精品国产91性色tv | 黄色的视频免费看 | 久久国产精品久久久久久小说 | 四虎影院精品在线观看 | 欧美激情在线一区二区三区 | 亚洲精品mv在线观看 | 久久精品女人天堂 | 在线欧美日韩国产 | 天天综合天天综合色在线 | 亚洲欧美不卡中文字幕 | 日韩成a人片在线观看日本 日韩成人 | 欧美肥婆videos另类 | 精品动漫中文字幕一区二区三区 | 99热久久这里只有精品9 | 久久精品国产亚洲香蕉 | 中文字幕精品在线视频 | 手机在线一区二区三区 | 午夜在线观看网站 | 欧美在线香蕉在线现视频 | 久热中文字幕在线观看 |