首頁 > 軟體

簡單的一次springMVC路由跳轉實現

2022-04-14 19:01:52

實現目標:使用springMVC前端控制器,跳轉到WEB-INF的templates下面的前端頁面

圖示

1.目錄結構

2.建立一個maven的webapp專案,建立好之後記得把index.jsp檔案刪除,否i則會首先跳到這個檔案,我們要用前端控制器轉發所有請求(如果有大佬知道怎麼讓他存在,又不影響,希望可以學習一下)

3.在xml裡面,設定springMVC前端控制器,

<!DOCTYPE web-app PUBLIC
 "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
 "http://java.sun.com/dtd/web-app_2_3.dtd" >

<web-app>
  <display-name>Archetype Created Web Application</display-name>

<!--  設定springMVC的前端控制器,對瀏覽器傳送的請求進行統一處理-->
  <servlet>
    <servlet-name>springMVC</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <!--  設定SpringMVC組態檔的位置和名稱-->
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springMVC.xml</param-value>
    </init-param>
    <!--將前端控制器DispatcherServlet的初始化時間提前到伺服器啟動時-->
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>springMVC</servlet-name>
    <!--匹配除了.jsp請求路徑的請求-->
    <url-pattern>/</url-pattern>
  </servlet-mapping>
</web-app>

4.建立並設定springMVC.xml,記得設定一下context(開啟掃描需要)

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--    掃描元件-->
    <context:component-scan base-package="com.atguigu.mvc.controller"></context:component-scan>
    <!-- 設定Thymeleaf檢視解析器 -->
    <bean id="viewResolver" class="org.thymeleaf.spring5.view.ThymeleafViewResolver">
        <!--設定檢視解析器優先順序,可以設定多個-->
        <property name="order" value="1"/>
        <property name="characterEncoding" value="UTF-8"/>
        <property name="templateEngine">
            <bean class="org.thymeleaf.spring5.SpringTemplateEngine">
                <property name="templateResolver">
                    <bean class="org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver">

                        <!-- 檢視字首 -->
                        <property name="prefix" value="/WEB-INF/templates/"/>

                        <!-- 檢視字尾 -->
                        <property name="suffix" value=".html"/>
                        <property name="templateMode" value="HTML5"/>
                        <property name="characterEncoding" value="UTF-8" />
                    </bean>
                </property>
            </bean>
        </property>
    </bean>
</beans>

5.匹配路徑

@Controller
public class HelloController {
    //"/" -->/web-inf/templates/index.html
    //RequestMapping請求對映
    //value可不寫
    @RequestMapping(value="/")
    public String tindex(){
        //返回檢視名稱,因為我們在檢視解析器裡面,設定了字尾,所以這裡不用寫了
        return "index";
    }

    @RequestMapping(value="/target")
    public String toTarget(){
        return "target";
    }
}

index.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>/</title>
</head>
<body>
<!--/瀏覽器從哪個localhost:8080開始-->
<!--th:被thymeleaf解析,可從localhost:8080:專案名字開始-->
<!--@{}檢測到絕對路徑,自動新增上下文路徑-->
<a th:href="@{/target}" rel="external nofollow" >存取目標</a>
ahhahahahah
</body>
</html>

target.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
HELLOWORLD
</body>
</html>

到此這篇關於簡單的一次springMVC路由跳轉實現的文章就介紹到這了,更多相關springMVC 路由跳轉內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com