springMVC幾種頁面跳轉(zhuǎn)方式小結(jié)
前面已經(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 重定向到另一個(gè)視圖(其他不變 )
@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)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Java 判斷字符串a(chǎn)和b是否互為旋轉(zhuǎn)詞
本篇文章主要介紹了判斷字符串a(chǎn)和b是否互為旋轉(zhuǎn)詞的相關(guān)知識(shí),具有很好的參考價(jià)值。下面跟著小編一起來看下吧2017-05-05
spring boot整合mybatis+mybatis-plus的示例代碼
這篇文章主要介紹了spring boot整合mybatis+mybatis-plus的示例代碼,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧2018-01-01
一種新的日期處理方式之JavaScript Temporal API
JavaScript Temporal API是一種為Web開發(fā)人員提供了一種新的處理日期和時(shí)間數(shù)據(jù)類型的方式。它的目的是使操作日期和時(shí)間更加簡單和可靠,而且不用擔(dān)心歷史時(shí)區(qū)問題或全球化協(xié)調(diào)時(shí)間(UTC)之類的問題,感興趣的同學(xué)可以參考閱讀2023-05-05
IntelliJ IDEA 常用設(shè)置(配置)吐血整理(首次安裝必需)
這篇文章主要介紹了IntelliJ IDEA 常用設(shè)置(配置)吐血整理(首次安裝必需),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-06-06
深入了解JVM(Java虛擬機(jī))內(nèi)存結(jié)構(gòu)
Java虛擬機(jī)(Java Virtual Machine,JVM)是Java程序的運(yùn)行環(huán)境,它是一個(gè)抽象的計(jì)算機(jī)模型,通過解釋和執(zhí)行Java字節(jié)碼來運(yùn)行Java程序,本將大家深入了解JVM(Java虛擬機(jī))內(nèi)存結(jié)構(gòu),需要的朋友可以參考下2023-08-08

