一、大概的整合步骤
1.整合dao层
mybatis和spring整合,通过spring管理mapper接口
使用mapper的扫描器自动扫描mapper接口在spring中进行注册
2.整合service层
通过spring审理,service接口
使用配置方式将service接口配置在spring配置文件中
实现事务控制
3.整合springmvc
由于springmvc是spring的模块,不需要整合。
二、工程环境搭建流程
1.引入jar包
2.log4j日志(开发环境中使用Debug模式更合适)
3.数据库连接参数db.properties(更好的与配置文件隔离)
4.mapper,po,service,contoller包
工程结构如图:
三、整合dao
mybatis与spring的整合
1.SqlMapConfig
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<!-- 全局setting配置,根据需要添加 -->
<!-- 配置别名 -->
<typeAliases>
<!-- 批量扫描别名 -->
<package name="cn.itcast.ssm.po"/>
</typeAliases>
<!-- 配置mapper
由于使用spring和mybatis的整合包进行mapper扫描,这里不需要配置了。
必须遵循:mapper.xml和mapper.java文件同名且在一个目录
-->
<!-- <mappers>
</mappers> -->
</configuration>
mybatis与spring整合,
1.applicationContext-dao.xml
配置:数据源,SqlSessionFactory,mapper扫描器
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
<!-- 加载db.properties文件中的内容,db.properties文件中key命名要有一定的特殊规则 -->
<context:property-placeholder location="classpath:db.properties" />
<!-- 配置数据源 ,dbcp -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<property name="maxActive" value="30" />
<property name="maxIdle" value="5" />
</bean>
<!-- sqlSessionFactory -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 数据库连接池 -->
<property name="dataSource" ref="dataSource" />
<!-- 加载mybatis的全局配置文件,注意value中名称 -->
<property name="configLocation" value="classpath:mybatis/sqlMapConfig.xml" />
</bean>
<!-- mapper扫描器 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!-- 扫描包路径,如果需要扫描多个包,中间使用半角逗号隔开 -->
<property name="basePackage" value="cn.itcast.ssm.mapper"></property>
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
<!-- 这里不能使用property name="sqlSessionFactory" ref="sqlSessionFactory"
去指定sqlSessionFactory,这样会导致加载db.properties文件中的内容不管用,最终导致连不上数据库-->
</bean>
</beans>
整合Dao:包装对象和扩展类
写mapper具体的实现,然后接口
(逆向工程生成的类尽量不要动,可以重新定义一个类,继承原来逆向生成的类。在这里添加额外的扩展属性。这样就生成一个包装类。
为了系统的可扩展,会添加子查询。resultType使用扩展对象
定义商品查询SQL片段。方便引入)
整合service:
1.接口
2.实现类
3.在spring中配置service
创建事务控制:
整合springmvc
1.配置springmvc.xml
2.配置前端控制器 web.xml
3.编写Controller(Handler)
注入service,并从service中取
编写jsp
4.加载springIOC容器
将mapper、service、Controller,分别使用了扫描器,声明式配置方式,组件扫描。
可以使用通配符方法,加载以上配置文件。
这时需要在web.xml中添加监听器,
<!-- 加载spring容器 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/spring/applicationContext-*.xml</param-value>
</context-param>