淘淘商城系列(二)—— SSM框架整合之表現層(七)
前面我們把服務層的dao層和service層框架整合好了,現在來整合表現層。
建立springmvc.xml檔案
開啟我們的taotao-manager-web表現層工程:
在resources目錄下面新建一個spring資料夾
之後再spring資料夾下面,建立springmvc.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:context="http://www.springframework.org/schema/context" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" xmlns:mvc="http://www.springframework.org/schema/mvc" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd http://code.alibabatech.com/schema/dubbo http://code.alibabatech.com/schema/dubbo/dubbo.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"> <context:component-scan base-package="com.taotao.controller" /> <mvc:annotation-driven /> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/" /> <property name="suffix" value=".jsp" /> </bean> <!-- 引用dubbo服務 --> <dubbo:application name="taotao-manager-web"/> <dubbo:registry protocol="zookeeper" address="192.168.195.135:2181"/> <!--<dubbo:reference interface="com.taotao.service.TestService" id="testService" />--> </beans>
如果沒有新增interface的依賴,還需要在表現層工程的POM檔案中新增 taotao-manager-interface工程的依賴。
<dependency>
<groupId>com.taotao</groupId>
<artifactId>taotao-manager-interface</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
配置web.xml檔案
首先找到web.xml檔案
開啟web.xml,新增如下配置:
<?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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>taotao-manager-web</display-name> <welcome-file-list> <welcome-file>login.html</welcome-file> </welcome-file-list> <!-- 解決post亂碼 --> <filter> <filter-name>CharacterEncodingFilter</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>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- springmvc的前端控制器 --> <servlet> <servlet-name>taotao-manager-web</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!-- contextConfigLocation不是必須的, 如果不配置contextConfigLocation, springmvc的配置檔案預設在:WEB-INF/servlet的name+"-servlet.xml" --> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring/springmvc.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>taotao-manager-web</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
其中前端控制器配置中<load-on-startup>1</load-on-startup>這句話的意思是tomcat啟動之後便載入DispatcherServlet,如果不配置的話,需要等請求訪問的時候才會載入DispatcherServlet。另外可以看到,我們並沒有配置父容器(ContextLoaderListener),這是因為我們在taotao-manager工程中已經配置過了,而且配置了Dao和Service。因此我們表現層不需要再配置一遍父容器了。
說到這裡,我們一般會對父子容器(同一個工程下)比較感興趣,想知道是怎麼回事,請看下面這張圖。Spring父容器一般配置的是Dao層和Service層,而Spring子容器一般配置的是Controller層,父子容器的訪問關係是,子容器可以訪問父容器中的物件,但是父容器無法訪問子容器中的物件,比如Controller可以把Dao和Service注入進來,但是Dao和Service無法把Controller注進來。
我們在service配置掃描包的時候配置的掃描範圍是”com.taotao.service”,如果我們配置成com.taotao,那麼就會把com.taotao.controller也掃描到父容器中,這樣父子容器中就都有Controller層了,但是在父容器中掃進來Controller是沒有用的,我們在表現層訪問的時候,訪問的還是子容器的Controller。同理,如果把子容器的掃描範圍擴大,變為com.taotao,那麼它便會把Dao和Service也掃描到子容器當中,這樣當我們訪問表現層的時候,訪問的便是子容器中的Dao和Service,子容器中的Dao和Service是沒有事務的,但是父容器中的Dao和Service是有事務的,這樣就會導致雖然我們在父容器中配置了事務,但由於子容器掃描範圍太大,而導致訪問子容器中的Dao和Service沒有事務的問題。
由於子容器可以直接訪問父容器中的物件,因此我們在子容器中不用配置Dao和Service便可以直接使用它們。子容器其實也可以完全當父容器使用,之所以搞出父子容器,是為了讓父容器有更好的擴充套件性,子容器只需要消費父容器就可以了。
如果有錯誤的地方,還請不吝賜教,非常感謝~
歡迎訪問我的CSDN部落格,讓我們一同成長!