Spring MVC配置實例

一、下載Jar文件,添加到項目 lib文件夾中。

使用eclipse新建 Web 項目。下載導入相關的 jar 和 Tomcat。個人java版本是JDK1.8 對應的 Tomcat 版本是 8.0.java

下載jar文件能夠參考 https://blog.csdn.net/yuexianchang/article/details/53583327web

我用的spring版本是 4.1.8,spring

能夠直接點擊 https://repo.spring.io/webapp/#/artifacts/browse/tree/General/libs-release-local/org/springframework/spring/4.1.8.RELEASE/spring-framework-4.1.8.RELEASE-dist.zip 進行下載。spring-mvc

下面截圖中劃紅線的是必須導入的 jar文件。服務器

二、對配置文件進行添加配置項

咱們使用eclipse新建 Web 項目以後,在 /WEB-INF/ 下面有個 Web.xml  文件。首先對他進行配置。配置以下: mvc

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns="http://java.sun.com/xml/ns/javaee" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  
  <!-- 配置SpringMVC控制器 -->
  <servlet>
      <servlet-name>webmvc</servlet-name>
      <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>       
   <!-- 啓動項目的時候要加載的配置文件
           param-name必須爲contextConfigLocation,param-value名字隨便起。
             默認加載必須規範:
             * 文件命名:servlet-name-servlet.xml====springmvc-servlet.xml
             * 路徑規範:必須在WEB-INF目錄下面
    --> 
      <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:spring-mvc.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <!-- 
          攔截過濾項   servlet-name要和 上面的 servlet-name 保持一致
          / 表示過濾全部的/的路徑,映射到SpringMVC控制器
      -->  
  <servlet-mapping>  
    <servlet-name>webmvc</servlet-name>  
    <url-pattern>/</url-pattern>  
   </servlet-mapping>   
   <!-- 配置過濾器, characterEncodingFilter字符編碼過濾器,通常咱們使用UTF-8-->
   <filter>
        <filter-name>encodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
   </filter>
   <filter-mapping>
           <filter-name>encodingFilter</filter-name>
           <url-pattern>/*</url-pattern>
   </filter-mapping>
</web-app>

 

注意:app

一、<servlet-class> 和  <param-name> 名字是固定的。eclipse

二、 <param-value> 加載 spring mvc的配置文件,不進行配置的話默認在 Web-INF下,規範如上!webapp

三、配置 spring-mvc文件

新建 spring-mvc.xml 文件,按照實際配置的路徑進行建立。jsp

由於上面配置的路徑實在 classpath下面,新建 resource 文件夾。在裏面添加 spring-mvc.xml 文件進行配置。配置以下: 

<?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:p="http://www.springframework.org/schema/p"
    xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context"
    xmlns:util="http://www.springframework.org/schema/util"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd  
            http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd  
            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd  
            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.3.xsd">
    <!-- 使用註解方式完成映射 -->
    
    <!-- 讓掃描spring掃描這個包下全部的類,讓標註spring註解的類生效 -->
    <context:component-scan base-package="com.controller" />
    
     <!-- DispatcherServlet不處理靜態資源,交給服務器默認的servlet處理 -->
    <mvc:default-servlet-handler />
    
    <!--啓用annotation-->
    <!--會自動註冊DefaultAnnotationHandlerMapping與AnnotationMethodHandlerAdapter 兩個bean-->         
    <mvc:annotation-driven/>
    <mvc:annotation-driven />
    
    <!-- 視圖解析器 若是不須要返回頁面也能夠不配置視圖解析器-->
    <bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/view/" />
        <property name="suffix" value=".jsp"></property>
    </bean>
</beans>

 

四、建立 Controller 類,進行測試

在 src 文件夾下新建 com.Controller  文件夾。在裏面新建 userController,代碼以下:

 1 package com.controller;
 2 
 3 import javax.servlet.http.HttpServletRequest;
 4 import javax.servlet.http.HttpServletResponse;
 5 
 6 import org.springframework.stereotype.Controller;
 7 import org.springframework.web.bind.annotation.RequestMapping; 
 8 
 9 @Controller
10 public class userController {
11 
12     @RequestMapping("/user/list") 
13     public String list(HttpServletRequest request,HttpServletResponse response) {
14         return "/user/list";
15     }
16 }
View Code

 

在 /WEB-INF 下面新建 view 文件夾,而後再新建 user 文件夾,在user 文件夾中添加 list.jsp 文件,

運行 Tomcat ,在地址欄裏輸入 http://localhost:8080/mvc/user/list  ,成功跳轉到  list.jsp 頁面。項目目錄以下:

 代碼點擊下載 

相關文章
相關標籤/搜索