第十五章 Spring整合SpringMVC_提出问题
Spring 与SpringMVC的整合问题
①需要进行 Spring 整合 SpringMVC 吗 ?
②还是否需要再加入 Spring 的 IOC 容器 ?
③是否需要在web.xml 文件中配置启动 Spring IOC 容器的 ContextLoaderListener ?
需要: 通常情况下, 类似于数据源, 事务, 整合其他框架都是放在 Spring 的配置文件中(而不是放在 SpringMVC 的配置文件中).
实际上放入 Spring 配置文件对应的 IOC 容器中的还有 Service 和 Dao.
不需要: 都放在 SpringMVC 的配置文件中. 也可以分多个 Spring 的配置文件, 然后使用 import 节点导入其他的配置文件
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
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 更高些.
Spring整合SpringMVC_解决方案配置***
①***配置
②创建Spring的bean的配置文件:beans.xml
③springmvc配置文件:springmvc.xml
注意
在HelloWorldHandler、UserService类中增加构造方法,启动服务器,查看构造器执行情况。
问题: 若 Spring 的 IOC 容器和 SpringMVC 的 IOC 容器扫描的包有重合的部分, 就会导致有的 bean 会被创建 2 次.
解决:
使 Spring 的 IOC 容器扫描的包和 SpringMVC 的 IOC 容器扫描的包没有重合的部分.
使用 exclude-filter 和 include-filter 子节点来规定只能扫描的注解
视频笔记部分
分工
- springmvc 和spring整合目的 分工明确
- springmvc的配置文件就来配置和网站转发逻辑以及网站功能有关的(视图解析器,文件上传解析器,支持ajax)
- spring的配置文件来配置和业务有关的(事务控制,数据源,aop)
整合的第一种方法 springmvc 中加入spring 只是创建一个IOC容器
<import resource="spring.xml"/>
等价于两个文件合二为一
整合的第二种方法 springmvc 和 spring 是两个IOC容器 【分容器】【一个炸了 另外一个不会受影响】
web文件配置: *** 项目已启动就打开 参考spring跟javaweb整合
<!-- needed for ContextLoaderListener --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring.xml</param-value> </context-param> <!-- Bootstraps the root web application context before servlet initialization --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
由于两个配置文件中都有包扫描 所以一些方法类会创建两次 装配的影响就是装配不是我们想要的带有事务处理过的service
Spring管理业务逻辑组件代码
<context:component-scan base-package="com.project"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/jsp/"></property> <property name="suffix" value=".jsp"></property> </bean>
Springmvc管理控制器组件
<context:component-scan base-package="com.project" use-default-filters="false"> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> </context:component-scan> <mvc:default-servlet-handler /> <mvc:annotation-driven />
子父容器【spring 扫描所有 除了mvc 父】【spring除mvc 其他不扫描 子】 子容器注入父容器的bean √ 父注入子 x 如service注入controller
继续添加异常处理的包扫描
spring
<context:component-scan base-package="com.project"> <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/> <context:exclude-filter type="annotation" expression="org.springframework.web.bind.annotation.ControllerAdvice"/> </context:component-scan>
springmvc
<context:component-scan base-package="com.project" 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>