1. 程式人生 > >ssm框架整合入門系列——配置SpringMVC dispatcherServlet-servlet.xml

ssm框架整合入門系列——配置SpringMVC dispatcherServlet-servlet.xml

配置SpringMVC


dispatcherServlet-servlet.xml

在ssm-crud專案中
SpringMVC的配置主要是在dispatcherServlet-servlet.xml檔案

在這之前,先修改beans的頭資訊,否則按alt+/ 快捷鍵沒有提示,並且新增context:component-scan還報錯:context:component-scan is not bound,後來找到的解決方法:context:component-scan is not bound

我試圖瞭解一下這些配置的資訊,但是並沒有找到比較讓人清晰明瞭的文章,未來如果找到我會放在這裡:地址(挖個坑)。

<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-3.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-3.0.xsd"
>
</beans>

然後,我們在src/main/java資料夾新增未來我們需要的資料夾:

  • com.liantao.crud.bean
  • com.liantao.crud.controller
  • com.liantao.crud.dao
  • com.liantao.crud.service
  • com.liantao.crud.test
  • com.liantao.crud.utils

點選xml檔案左下角的Namespaces勾選上context,beans,如圖:
namespaces
namespaces
接著,dispatcherServlet-servlet.xml

檔案新增:

	<!-- SpringMVC的配置檔案,包含網站跳轉邏輯的控制配置 -->
	<context:component-scan base-package="com.liantao" use-default-filters="false">
		<!-- 只掃描控制器 -->
		<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
	</context:component-scan>

作用:讓SpringMVC只掃描com.liantao.crud.controller
先知道作用就夠了,這裡有一篇<context:component-scan/>的詳細介紹:context:component-scan

ViewResolver 檢視解析器

<!-- 檢視解析器,方便頁面返回 -->
	<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/views/"></property>
		<property name="suffix" value=".jsp"></property>
	</bean>

作用:簡單描述就是對Controller類中每個函式返回值那裡的String型別前後加路徑
關於它的分析:ViewResolver

兩個標準配置

Namespaces勾選上mvc

<!-- 兩個標準配置 -->
	<!-- 將SpringMVC不能處理的請求交給tomcat -->
	<mvc:default-servlet-handler/>
	<mvc:annotation-driven>
	<!-- 能支援SpringMVC更高階的一些功能,JSR303的校驗,快捷的ajax...對映動態請求 -->
	</mvc:annotation-driven>

作用看註釋。
詳細分析看:SpringMVC處理靜態檔案原始碼分析

END