SSM整合:
Spring - SpringMVC - MyBatis
1.
Spring - MyBatis : 需要整合:将MyBatis的SqlSessionFactory 交给Spring
2
Spring - SpringMVC : 就是将Spring - SpringMVC 各自配置一遍
思路:
可以发现 ,MyBatis最终是通过SqlSessionFactory来操作数据库,
Spring整合MyBatis 其实就是 将MyBatis的SqlSessionFactory 交给Spring
1.jar
2.类-表
3.-(与Spring整合时,conf.xml可省)--MyBatis配置文件conf.xml(数据源、mapper.xml) --可省,将该文件中的配置 全部交由spring管理
spring配置文件 applicationContext.xml
4.通过mapper.xml将 类、表建立映射关系
5.
之前使用MyBatis: conf.xml ->SqlSessionFacotry
现在整合的时候,需要通过Spring管理SqlSessionFacotry ,因此 产生qlSessionFacotry 所需要的数据库信息 不在放入conf.xml 而需要放入spring配置文件中
配置Spring配置文件(applicationContext.xml) (Web项目):
web.xml <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml //当有多个xml配置文件
classpath:spring_dao.xml
classpath:spring_service.xml
</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
6.使用Spring整合MyBatis :将MyBatis的SqlSessionFactory 交给Spring
spring-dao.xml
<!-- 加载db.properties文件 --> <bean id="config" class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer"> <property name="locations"> <array> <value>classpath:db.properties</value> </array> </property> </bean> <!-- 配置配置数据库信息(替代mybatis的配置文件conf.xml) --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="${driver}"></property> <property name="url" value="${url}"></property> <property name="username" value="${username}"></property> <property name="password" value="${password}"></property> </bean> <!-- conf.xml : 数据源,mapper.xml --> <!-- 配置MyBatis需要的核心类:SqlSessionFactory --> <!-- 在SpringIoc容器中 创建MyBatis的核心类 SqlSesionFactory --> <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource"></property> <!-- 加载mapper.xml路径 --> <property name="mapperLocations" value="classpath:org/lanqiao/mapper/*.xml"></property> </bean> <!-- 将MyBatis的SqlSessionFactory 交给Spring --> <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property> <property name="basePackage" value="org.lanqiao.mapper"></property> <!--上面basePackage所在的property的作用: 将org.lanqiao.mapper包中,所有的接口 产生与之对应的 动态代理对象 (对象名 就是 首字母小写的接口名) :studentMapper.querystudentBYNO(); --> </bean>
7.继续整合SpringMVC:将springmvc加入项目即可
a.加入SpringMVC需要的jar
spring-webmvc.jar
b.给项目加入SpringMVC支持
web.xml: dispatcherServlet
c.编写springmvc配置文件:
applicationContext-controller.xml:视图解析器、基础配置
web.xml <!-- 整合SPringMVC --> <servlet> <servlet-name>springDispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext-controller.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <!-- Map all requests to the DispatcherServlet for handling --> <servlet-mapping> <servlet-name>springDispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
spring-mvc.xml <!-- 将控制器所在包 加入IOC容器 --> <context:component-scan base-package="org.lanqiao.controller"></context:component-scan> <!-- 配置视图解析器 --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/views/"></property> <property name="suffix" value=".jsp"></property> </bean> <!-- SPringMVC基础配置、标配 --> <mvc:annotation-driven></mvc:annotation-driven>