1. Spring 与SpringMVC的整合问题:

① 需要进行 Spring 整合 SpringMVC 吗 ?

② 还是否需要再加入 Spring 的 IOC 容器 ?

③ 是否需要在web.xml 文件中配置启动 Spring IOC 容器的 ContextLoaderListener ?

image.png

需要通常情况下, 类似于数据源 事务, 整合其他框架都是放在 Spring 的配置文件中(而不是放在 SpringMVC 的配置文件中).

实际上放入 Spring 配置文件对应的 IOC 容器中的还有 Service 和 Dao.

不需要都放在 SpringMVC 的配置文件中也可以分多个 Spring 的配置文件 然后使用 import 节点导入其他的配置文件

SpringMVC加入处理页面请求的Controller
以外的用Spring来
做到分工明确

2. Spring和SpringMVC的配置文件

① web.xml配置

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  3. <display-name>7.SpringMVC_crud</display-name>
  4. <welcome-file-list>
  5. <welcome-file>index.html</welcome-file>
  6. <welcome-file>index.htm</welcome-file>
  7. <welcome-file>index.jsp</welcome-file>
  8. <welcome-file>default.html</welcome-file>
  9. <welcome-file>default.htm</welcome-file>
  10. <welcome-file>default.jsp</welcome-file>
  11. </welcome-file-list>
  12. <!-- 配置启动 Spring IOC 容器的 Listener -->
  13. <context-param>
  14. <param-name>contextConfigLocation</param-name>
  15. <param-value>classpath:spring.xml</param-value>
  16. </context-param>
  17. <listener>
  18. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  19. </listener>
  20. <!-- 配置前端控制器 -->
  21. <servlet>
  22. <servlet-name>springDispatcherServlet</servlet-name>
  23. <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  24. <init-param>
  25. <param-name>contextConfigLocation</param-name>
  26. <param-value>classpath:springmvc.xml</param-value>
  27. </init-param>
  28. <load-on-startup>1</load-on-startup>
  29. </servlet>
  30. <servlet-mapping>
  31. <servlet-name>springDispatcherServlet</servlet-name>
  32. <url-pattern>/</url-pattern>
  33. </servlet-mapping>
  34. <!-- 配置字符编码过滤器 -->
  35. <filter>
  36. <filter-name>CharacterEncodingFilter</filter-name>
  37. <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  38. <init-param>
  39. <param-name>encoding</param-name>
  40. <param-value>utf-8</param-value>
  41. </init-param>
  42. <init-param>
  43. <param-name>forceEncoding</param-name>
  44. <param-value>true</param-value>
  45. </init-param>
  46. </filter>
  47. <filter-mapping>
  48. <filter-name>CharacterEncodingFilter</filter-name>
  49. <url-pattern>/*</url-pattern>
  50. </filter-mapping>
  51. <!-- 配置支持Rest风格过滤器 -->
  52. <filter>
  53. <filter-name>HiddenHttpMethodFilter</filter-name>
  54. <filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
  55. </filter>
  56. <filter-mapping>
  57. <filter-name>HiddenHttpMethodFilter</filter-name>
  58. <url-pattern>/*</url-pattern>
  59. </filter-mapping>
  60. </web-app>

② 创建Spring的bean的配置文件:spring.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:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <!-- 设置扫描组件的包 -->
    <context:component-scan base-package="com.hao">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>

    <!-- 配置数据源, 整合其他框架, 事务等. -->
</beans>

③ springmvc配置文件: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:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <!-- 设置扫描组件的包 -->
    <context:component-scan base-package="com.hao" use-default-filters="false">
         <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
         <context:include-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/>

    </context:component-scan>

    <!-- 配置视图解析器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>

    <mvc:default-servlet-handler/>
    <mvc:annotation-driven></mvc:annotation-driven>

    <bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
        <property name="exceptionMappings">
            <props>
                <prop key="java.lang.NullPointerException">myerror</prop>
            </props>
        </property>

        <property name="exceptionAttribute" value="ex"></property>
    </bean>

</beans>

在HelloWorldHandler、UserService类中增加构造方法,启动服务器,查看构造器执行情况。

问题: 若 Spring 的 IOC 容器和 SpringMVC 的 IOC 容器扫描的包有重合的部分, 就会导致有的 bean 会被创建 2 次.

解决:

使 Spring 的 IOC 容器扫描的包和 SpringMVC 的 IOC 容器扫描的包没有重合的部分.

使用 exclude-filter 和 include-filter 子节点来规定只能扫描的注解

3. SpringIOC 容器和 SpringMVC IOC 容器的关系

SpringMVC 的 IOC 容器中的 bean 可以来引用 Spring IOC 容器中的 bean.

返回来呢 ? 反之则不行. Spring IOC 容器中的 bean 却不能来引用 SpringMVC IOC 容器中的 bean

在 Spring MVC 配置文件中引用业务层的 Bean

多个 Spring IOC 容器之间可以设置为父子关系,以实现良好的解耦。

Spring MVC WEB 层容器可作为 “业务层” Spring 容器的子容器:

即 WEB 层容器可以引用业务层容器的 Bean,而业务层容器却访问不到 WEB 层容器的 Bean
image.png

4. SpringMVC对比Struts2

①. Spring MVC 的入口是 Servlet, 而 Struts2 是 Filter

②. Spring MVC 会稍微比 Struts2 快些. Spring MVC 是基于方法设计, 而 Sturts2 是基于类, 每次发一次请求都会实例一个 Action.

③. Spring MVC 使用更加简洁, 开发效率Spring MVC确实比 struts2 高: 支持 JSR303, 处理 ajax 的请求更方便

④. Struts2 的 OGNL 表达式使页面的开发效率相比 Spring MVC 更高些.
[

](https://blog.csdn.net/qq_43284469/article/details/111205907)