`
yiheng
  • 浏览: 156592 次
社区版块
存档分类

MyBatis3整合Spring3、SpringMVC3

 
阅读更多
开发环境:

System:Windows

WebBrowser:IE6+、Firefox3+

JavaEE Server:tomcat5.0.2.8、tomcat6

IDE:eclipse、MyEclipse 8

Database:MySQL

开发依赖库:

JavaEE5、Spring 3.0.5、Mybatis 3.0.4、myBatis-spring-1.0、junit4.8.2

Email:hoojo_@126.com

Blog:http://blog.csdn.net/IBM_hoojo

http://hoojo.cnblogs.com/

1、 首先新建一个WebProject 命名为MyBatisForSpring,新建项目时,使用JavaEE5的lib库。然后手动添加需要的jar包,所需jar包如下:

clip_image002

2、 添加spring的监听及springMVC的核心Servlet,web.xml内容,内容如下:

-- 加载Spring容器配置 -->
<!--CRLF-->
listener>
<!--CRLF-->
    listener-class>org.springframework.web.context.ContextLoaderListenerlistener-class>
<!--CRLF-->
listener>
<!--CRLF-->

<!--CRLF-->

    
-- 设置Spring容器加载配置文件路径 -->
<!--CRLF-->
context-param>
<!--CRLF-->
    param-name>contextConfigLocationparam-name>
<!--CRLF-->
    param-value>classpath*:applicationContext-*.xmlparam-value>
<!--CRLF-->
context-param>
<!--CRLF-->

<!--CRLF-->

    
-- 配置Spring核心控制器 -->
<!--CRLF-->
servlet>
<!--CRLF-->
    servlet-name>dispatcherservlet-name>
<!--CRLF-->
    servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>
<!--CRLF-->
    init-param>
<!--CRLF-->
        param-name>contextConfigLocationparam-name>
<!--CRLF-->
        param-value>/WEB-INF/dispatcher.xmlparam-value>
<!--CRLF-->
    init-param>
<!--CRLF-->
    load-on-startup>1load-on-startup>
<!--CRLF-->
servlet>
<!--CRLF-->

<!--CRLF-->

    
servlet-mapping>
<!--CRLF-->
    servlet-name>dispatcherservlet-name>
<!--CRLF-->
    url-pattern>*.dourl-pattern>
<!--CRLF-->
servlet-mapping>
<!--CRLF-->

<!--CRLF-->

    
-- 解决工程编码过滤器 -->
<!--CRLF-->
filter>
<!--CRLF-->
    filter-name>characterEncodingFilterfilter-name>
<!--CRLF-->
    filter-class>org.springframework.web.filter.CharacterEncodingFilterfilter-class>
<!--CRLF-->
    init-param>
<!--CRLF-->
        param-name>encodingparam-name>
<!--CRLF-->
        param-value>UTF-8param-value>
<!--CRLF-->
    init-param>
<!--CRLF-->
filter>
<!--CRLF-->

<!--CRLF-->

    
filter-mapping>
<!--CRLF-->
    filter-name>characterEncodingFilterfilter-name>
<!--CRLF-->
    url-pattern>/*url-pattern>
<!--CRLF-->
filter-mapping>
<!--CRLF-->

3、 在WEB-INF目录中添加dispatcher.xml,内容如下:

xml version="1.0" encoding="UTF-8"?>
<!--CRLF-->
beans xmlns="http://www.springframework.org/schema/beans"
<!--CRLF-->
    xmlns:context="http://www.springframework.org/schema/context"
<!--CRLF-->
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<!--CRLF-->
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
<!--CRLF-->
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
<!--CRLF-->
    http://www.springframework.org/schema/context
<!--CRLF-->
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!--CRLF-->
    -- 注解探测器 -->
<!--CRLF-->
    context:component-scan base-package="com.hoo"/>
<!--CRLF-->
    
<!--CRLF-->
    --  annotation默认的方法映射适配器 -->
<!--CRLF-->
    bean id="handlerMapping" class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
<!--CRLF-->

<!--CRLF-->

    
    bean id="handlerAdapter" class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
<!--CRLF-->
beans>
<!--CRLF-->

4、 在src目录下添加applicationContext-common.xml,内容如下:

xml version="1.0" encoding="UTF-8"?>
<!--CRLF-->
beans xmlns="http://www.springframework.org/schema/beans"
<!--CRLF-->
    xmlns:aop="http://www.springframework.org/schema/aop" 
<!--CRLF-->
    xmlns:tx="http://www.springframework.org/schema/tx"
<!--CRLF-->
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<!--CRLF-->
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
<!--CRLF-->
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
<!--CRLF-->
    http://www.springframework.org/schema/aop 
<!--CRLF-->
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd 
<!--CRLF-->
    http://www.springframework.org/schema/tx  
<!--CRLF-->
    http://www.springframework.org/schema/tx/spring-tx-3.0.xsd ">
<!--CRLF-->
    
<!--CRLF-->
    -- 配置DataSource数据源 -->
<!--CRLF-->
    bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<!--CRLF-->
        property name="driverClassName" value="com.mysql.jdbc.Driver"/>
<!--CRLF-->
        property name="url" value="jdbc:mysql://10.0.0.131:3306/ash2"/>
<!--CRLF-->
        property name="username" value="dev"/>
<!--CRLF-->
        property name="password" value="dev"/>
<!--CRLF-->
    bean>
<!--CRLF-->
    
<!--CRLF-->
    -- 配置SqlSessionFactoryBean -->
<!--CRLF-->
    bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!--CRLF-->
        property name="dataSource" ref="dataSource"/>
<!--CRLF-->
        property name="configLocation" value="classpath:mybatis.xml"/>
<!--CRLF-->
        -- mapper和resultmap配置路径 -->
<!--CRLF-->
        property name="mapperLocations">
<!--CRLF-->
            list>
<!--CRLF-->
                -- 表示在com.hoo.resultmap包或以下所有目录中以-resultmap.xml结尾所有文件 -->
<!--CRLF-->
                value>classpath:com/hoo/resultmap/**/*-resultmap.xmlvalue>
<!--CRLF-->
                value>classpath:com/hoo/entity/*-resultmap.xmlvalue>
<!--CRLF-->
                value>classpath:com/hoo/mapper/**/*-mapper.xmlvalue>
<!--CRLF-->
            list>
<!--CRLF-->
        property>
<!--CRLF-->
    bean>
<!--CRLF-->
    
<!--CRLF-->
    -- 单独配置一个Mapper这种模式就是得给每个mapper接口配置一个bean -->
<!--CRLF-->
    -- 
<!--CRLF-->
    bean id="accountMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"> 
<!--CRLF-->
        property name="mapperInterface" value="com.hoo.mapper.AccountMapper" />
<!--CRLF-->
        property name="sqlSessionFactory" ref="sqlSessionFactory" /> 
<!--CRLF-->
    bean> 
<!--CRLF-->
    
<!--CRLF-->
    bean id="companyMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"> 
<!--CRLF-->
        property name="mapperInterface" value="com.hoo.mapper.CompanyMapper" />
<!--CRLF-->
        property name="sqlSessionFactory" ref="sqlSessionFactory" /> 
<!--CRLF-->
    bean>
<!--CRLF-->
     --> 
<!--CRLF-->
    
<!--CRLF-->
    -- 通过扫描的模式扫描目录在com/hoo/mapper目录下所有的mapper都继承SqlMapper接口的接口这样一个bean就可以了 -->
<!--CRLF-->
    bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!--CRLF-->
        property name="basePackage" value="com.hoo.mapper"/>
<!--CRLF-->
        property name="markerInterface" value="com.hoo.mapper.SqlMapper"/>
<!--CRLF-->
    bean>
<!--CRLF-->
beans>
<!--CRLF-->

上面的配置最先配置的是DataSource,这里采用的是jdbc的DataSource;

然后是SqlSessionFactoryBean,这个配置比较关键。SqlSessionFactoryBean需要注入DataSource数据源,其次还要设置configLocation也就是mybatis的xml配置文件路径,完成一些关于mybatis的配置,如settings、mappers、plugin等;

如果使用mapperCannerConfigurer模式,需要设置扫描根路径也就是你的mybatis的mapper接口所在包路径;凡是markerInterface这个接口的子接口都参与到这个扫描,也就是说所有的mapper接口继承这个SqlMapper。

如果你不使用自己的transaction事务,就使用MapperScannerConfigurer来完成SqlSession的打开、关闭和事务的回滚操作。在此期间,出现数据库操作的如何异常都会被转换成DataAccessException,这个异常是一个抽象的类,继承RuntimeException;

5、 SqlMapper内容如下:

package com.hoo.mapper;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function:所有的Mapper继承这个接口
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-12 下午04:00:31
<!--CRLF-->
 * @file SqlMapper.java
<!--CRLF-->
 * @package com.hoo.mapper
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
public interface SqlMapper {
<!--CRLF-->

<!--CRLF-->

    
}
<!--CRLF-->

6、 实体类和ResultMap.xml

package com.hoo.entity;
<!--CRLF-->

<!--CRLF-->

    
import java.io.Serializable;
<!--CRLF-->
import javax.persistence.Entity;
<!--CRLF-->

<!--CRLF-->

    
@Entity
<!--CRLF-->
public class Account implements Serializable {
<!--CRLF-->

<!--CRLF-->

    
    private static final long serialVersionUID = -7970848646314840509L;
<!--CRLF-->

<!--CRLF-->

    
    private Integer accountId;
<!--CRLF-->
    private Integer status;
<!--CRLF-->
    private String username;
<!--CRLF-->
    private String password;
<!--CRLF-->
    private String salt;
<!--CRLF-->
    private String email;
<!--CRLF-->
    private Integer roleId;
<!--CRLF-->
    
<!--CRLF-->
    //getter、setter
<!--CRLF-->

<!--CRLF-->

    
    @Override
<!--CRLF-->
    public String toString() {
<!--CRLF-->
        return this.accountId + "#" + this.status + "#" + this.username +  "#" + 
<!--CRLF-->
            this.password +  "#" + this.email +  "#" + this.salt + "#" + this.roleId;
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

account-resultmap.xml

xml version="1.0" encoding="UTF-8"?>
<!--CRLF-->
DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
<!--CRLF-->
    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--CRLF-->
mapper namespace="accountMap">
<!--CRLF-->
    resultMap type="com.hoo.entity.Account" id="accountResultMap">
<!--CRLF-->
        id property="accountId" column="account_id"/>
<!--CRLF-->
        result property="username" column="username"/>
<!--CRLF-->
        result property="password" column="password"/>
<!--CRLF-->
        result property="status" column="status"/>
<!--CRLF-->
    resultMap>
<!--CRLF-->
mapper>
<!--CRLF-->

7、 在src目录中添加applicationContext-beans.xml内容如下:

xml version="1.0" encoding="UTF-8"?>
<!--CRLF-->
beans xmlns="http://www.springframework.org/schema/beans"
<!--CRLF-->
    xmlns:context="http://www.springframework.org/schema/context"
<!--CRLF-->
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
<!--CRLF-->
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
<!--CRLF-->
    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
<!--CRLF-->
    http://www.springframework.org/schema/context
<!--CRLF-->
    http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!--CRLF-->
    -- 注解探测器在JUnit测试的时候需要-->
<!--CRLF-->
    context:component-scan base-package="com.hoo"/>
<!--CRLF-->
    
<!--CRLF-->
beans>
<!--CRLF-->

这里配置bean对象,一些不能用annotation注解的对象就可以配置在这里

8、 在src目录中添加mybatis.xml,内容如下:

xml version="1.0" encoding="UTF-8" ?>
<!--CRLF-->
DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<!--CRLF-->
configuration>
<!--CRLF-->
    -- 别名 -->
<!--CRLF-->
    typeAliases>
<!--CRLF-->
        typeAlias type="com.hoo.entity.Account" alias="account"/>
<!--CRLF-->
    typeAliases>
<!--CRLF-->
configuration>
<!--CRLF-->

在这个文件放置一些全局性的配置,如handler、objectFactory、plugin、以及mappers的映射路径(由于在applicationContext-common中的SqlSessionFactoryBean有配置mapper的location,这里就不需要配置)等

9、 AccountMapper接口,内容如下:

package com.hoo.mapper;
<!--CRLF-->

<!--CRLF-->

    
import java.util.List;
<!--CRLF-->
import org.apache.ibatis.annotations.Select;
<!--CRLF-->
import com.hoo.entity.Account;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function:继承SqlMapper,MyBatis数据操作接口;此接口无需实现类
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2010-12-21 下午05:21:20
<!--CRLF-->
 * @file AccountMapper.java
<!--CRLF-->
 * @package com.hoo.mapper
<!--CRLF-->
 * @project MyBatis
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
public interface AccountMapper extends SqlMapper {
<!--CRLF-->
    
<!--CRLF-->
    public List<account> getAllAccount();</account>
<!--CRLF-->
    
<!--CRLF-->
    public Account getAccount();
<!--CRLF-->
    
<!--CRLF-->
    public Account getAccountById(String id);
<!--CRLF-->
    
<!--CRLF-->
    public Account getAccountByNames(String spring);
<!--CRLF-->
    
<!--CRLF-->
    @Select("select * from account where username = #{name}")
<!--CRLF-->
    public Account getAccountByName(String name);
<!--CRLF-->
    
<!--CRLF-->
    public void addAccount(Account account);
<!--CRLF-->
    
<!--CRLF-->
    public void editAccount(Account account);
<!--CRLF-->
    
<!--CRLF-->
    public void removeAccount(int id);
<!--CRLF-->
}
<!--CRLF-->

这个接口我们不需要实现,由mybatis帮助我们实现,我们通过mapper文件配置sql语句即可完成接口的实现。然后这个接口需要继承SqlMapper接口,不然在其他地方就不能从Spring容器中拿到这个mapper接口,也就是说当我们注入这个接口的时候将会失败。

当然,你不继承这个接口也可以。那就是你需要给买个mapper配置一个bean。配置方法如下:

bean id="accountMapper" class="org.mybatis.spring.mapper.MapperFactoryBean"> 
<!--CRLF-->
    property name="mapperInterface" value="com.hoo.mapper.AccountMapper" />
<!--CRLF-->
    property name="sqlSessionFactory" ref="sqlSessionFactory" /> 
<!--CRLF-->
bean>
<!--CRLF-->

这里的MapperFactoryBean可以帮助我们完成Session的打开、关闭等操作

10、 在com.hoo.mapper也就是在AccountMapper接口的同一个包下,添加account-mapper.xml,内容如下:

xml version="1.0" encoding="UTF-8"?>
<!--CRLF-->
DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" 
<!--CRLF-->
    "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!--CRLF-->
-- namespace和定义的Mapper接口对应并实现其中的方法 -->
<!--CRLF-->
mapper namespace="com.hoo.mapper.AccountMapper">
<!--CRLF-->
    -- id和mapper接口中的方法名对应resultType使用mybatis.xml中的别名 -->
<!--CRLF-->
    select id="getAccount" resultType="account">
<!--CRLF-->
        [CDATA[
<!--CRLF-->
            select * from account limit 1
<!--CRLF-->
        ]]>
<!--CRLF-->
    select>
<!--CRLF-->
    
<!--CRLF-->
    select id="getAllAccount" resultType="list" resultMap="accountResultMap">
<!--CRLF-->
        [CDATA[
<!--CRLF-->
            select * from account
<!--CRLF-->
        ]]>
<!--CRLF-->
    select>
<!--CRLF-->
    
<!--CRLF-->
    -- accountResultMap是account-resultmap.xml中定义的resultmap -->
<!--CRLF-->
    select id="getAccountById" parameterType="string" resultType="com.hoo.entity.Account" resultMap="accountResultMap">
<!--CRLF-->
        [CDATA[
<!--CRLF-->
            select * from account where account_id = #{id}
<!--CRLF-->
        ]]>
<!--CRLF-->
    select>
<!--CRLF-->
    
<!--CRLF-->
    -- accountMap.accountResultMap是account-resultmap.xml中定义的resultmap通过namespace.id找到 -->
<!--CRLF-->
    select id="getAccountByNames" parameterType="string" resultMap="accountMap.accountResultMap">
<!--CRLF-->
        [CDATA[
<!--CRLF-->
            select * from account where username = #{name}
<!--CRLF-->
        ]]>
<!--CRLF-->
    select>
<!--CRLF-->
    
<!--CRLF-->
    sql id="user_name_pwd">
<!--CRLF-->
        username, password
<!--CRLF-->
    sql>
<!--CRLF-->
    
<!--CRLF-->
    -- 自动生成id策略 -->
<!--CRLF-->
    insert id="addAccount" useGeneratedKeys="true" keyProperty="account_id" parameterType="account">
<!--CRLF-->
        insert into account(account_id, status, username, password)
<!--CRLF-->
        values(#{accountId}, #{status}, #{username}, #{password})
<!--CRLF-->
    insert>
<!--CRLF-->
    
<!--CRLF-->
    -- 根据selectKey语句生成主键 -->
<!--CRLF-->
    insert id="addAccount4Key" parameterType="account">
<!--CRLF-->
        selectKey keyProperty="account_id" order="BEFORE" resultType="int">
<!--CRLF-->
            select cast(random() * 10000 as Integer) a from #Tab
<!--CRLF-->
        selectKey>
<!--CRLF-->
        insert into account(account_id, status, username, password)
<!--CRLF-->
        values(#{accountId}, #{status}, #{username}, #{password})
<!--CRLF-->
    insert>
<!--CRLF-->
    
<!--CRLF-->
    update id="editAccount" parameterType="account">
<!--CRLF-->
        update account set
<!--CRLF-->
        status = #{status},
<!--CRLF-->
        username = #{username},
<!--CRLF-->
        password = #{password}
<!--CRLF-->
        where account_id = #{accountId}
<!--CRLF-->
    update>
<!--CRLF-->
    
<!--CRLF-->
    delete id="removeAccount" parameterType="int">
<!--CRLF-->
        delete from account where account_id = #{id}
<!--CRLF-->
    delete>
<!--CRLF-->
mapper>
<!--CRLF-->

上面的namespace和定义接口类路径对应,所有的sql语句,如select、insert、delete、update的id和方法名称对应。关于更多MyBatis内容的讲解,这里就不赘述的。这里只完成整合!如果你不懂可以去阅读其他关于MyBatis的资料。

11、 为了测试发布,这里使用junit和spring官方提供的spring-test.jar,完成spring框架整合的测试,代码如下:

package com.hoo.mapper;
<!--CRLF-->

<!--CRLF-->

    
import java.util.List;
<!--CRLF-->
import javax.inject.Inject;
<!--CRLF-->
import org.springframework.test.context.ContextConfiguration;
<!--CRLF-->
import org.springframework.test.context.junit38.AbstractJUnit38SpringContextTests;
<!--CRLF-->
import com.hoo.entity.Account;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function: AccountMapper JUnit测试类
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-12 下午04:21:50
<!--CRLF-->
 * @file AccountMapperTest.java
<!--CRLF-->
 * @package com.hoo.mapper
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->

<!--CRLF-->

    
@ContextConfiguration("classpath:applicationContext-*.xml")
<!--CRLF-->
public class AccountMapperTest extends AbstractJUnit38SpringContextTests {
<!--CRLF-->
    
<!--CRLF-->
    @Inject
<!--CRLF-->
    //@Named("accountMapper")
<!--CRLF-->
    private AccountMapper mapper;
<!--CRLF-->
    
<!--CRLF-->
    public void testGetAccount() {
<!--CRLF-->
        System.out.println(mapper.getAccount());
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testGetAccountById() {
<!--CRLF-->
        System.out.println(mapper.getAccountById("28"));
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testGetAccountByName() {
<!--CRLF-->
        System.out.println(mapper.getAccountByName("user"));
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testGetAccountByNames() {
<!--CRLF-->
        System.out.println(mapper.getAccountByNames("user"));
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testAdd() {
<!--CRLF-->
        Account account = new Account();
<!--CRLF-->
        account.setEmail("temp@155.com");
<!--CRLF-->
        account.setPassword("abc");
<!--CRLF-->
        account.setRoleId(1);
<!--CRLF-->
        account.setSalt("ss");
<!--CRLF-->
        account.setStatus(0);
<!--CRLF-->
        account.setUsername("Jack");
<!--CRLF-->
        mapper.addAccount(account);
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testEditAccount() {
<!--CRLF-->
        Account acc = mapper.getAccountByNames("Jack");
<!--CRLF-->
        System.out.println(acc);
<!--CRLF-->
        acc.setUsername("Zhangsan");
<!--CRLF-->
        acc.setPassword("123123");
<!--CRLF-->
        mapper.editAccount(acc);
<!--CRLF-->
        System.out.println(mapper.getAccountById(acc.getAccountId() + ""));
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testRemoveAccount() {
<!--CRLF-->
        Account acc = mapper.getAccountByNames("Jack");
<!--CRLF-->
        mapper.removeAccount(acc.getAccountId());
<!--CRLF-->
        System.out.println(mapper.getAccountByNames("Jack"));
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testAccountList() {
<!--CRLF-->
        List<account> acc = mapper.getAllAccount();</account>
<!--CRLF-->
        System.out.println(acc.size());
<!--CRLF-->
        System.out.println(acc);
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

这里的注入并没有使用@Autowired、@Resource、@Qualifier注入,而是使用@Inject、@Named注入方式,Inject注入是JSR330的标准注入方式;而不局限于某个产品,使用于多个产品的使用,推荐使用这种方式;运行后,没有发现问题,就可以继续后续的编码工作了。

12、 定义AccountDao接口及实现代码,代码如下:

package com.hoo.dao;
<!--CRLF-->

<!--CRLF-->

    
import java.util.List;
<!--CRLF-->
import org.springframework.dao.DataAccessException;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function: Account数据库操作dao接口
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-13 上午10:21:38
<!--CRLF-->
 * @file AccountDao.java
<!--CRLF-->
 * @package com.hoo.dao
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
public interface AccountDao<t> {</t>
<!--CRLF-->
    
<!--CRLF-->
    /**
<!--CRLF-->
     * function: 添加Account对象信息
<!--CRLF-->
     * @author hoojo
<!--CRLF-->
     * @createDate 2011-4-13 上午11:50:05
<!--CRLF-->
     * @param entity Account
<!--CRLF-->
     * @return boolean 是否成功
<!--CRLF-->
     * @throws DataAccessException
<!--CRLF-->
     */
<!--CRLF-->
    public boolean addAccount(T entity) throws DataAccessException;
<!--CRLF-->
    
<!--CRLF-->
    /**
<!--CRLF-->
     * function: 根据id对到Account信息
<!--CRLF-->
     * @author hoojo
<!--CRLF-->
     * @createDate 2011-4-13 上午11:50:45
<!--CRLF-->
     * @param id 编号id
<!--CRLF-->
     * @return Account
<!--CRLF-->
     * @throws DataAccessException
<!--CRLF-->
     */
<!--CRLF-->
    public T getAccount(Integer id) throws DataAccessException;
<!--CRLF-->
    
<!--CRLF-->
    /**
<!--CRLF-->
     * function: 查询所有Account信息
<!--CRLF-->
     * @author hoojo
<!--CRLF-->
     * @createDate 2011-4-13 上午11:51:45
<!--CRLF-->
     * @param id 编号id
<!--CRLF-->
     * @return Account
<!--CRLF-->
     * @throws DataAccessException
<!--CRLF-->
     */
<!--CRLF-->
    public List<t> getList() <span style="color: #0000ff">throws</span> DataAccessException;</t>
<!--CRLF-->
}
<!--CRLF-->

接口实现

package com.hoo.dao.impl;
<!--CRLF-->

<!--CRLF-->

    
import java.util.List;
<!--CRLF-->
import javax.inject.Inject;
<!--CRLF-->
import org.springframework.dao.DataAccessException;
<!--CRLF-->
import org.springframework.stereotype.Repository;
<!--CRLF-->
import com.hoo.dao.AccountDao;
<!--CRLF-->
import com.hoo.entity.Account;
<!--CRLF-->
import com.hoo.mapper.AccountMapper;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function: Account数据库操作dao
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-13 上午10:25:02
<!--CRLF-->
 * @file AccountDaoImpl.java
<!--CRLF-->
 * @package com.hoo.dao.impl
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
@SuppressWarnings("unchecked")
<!--CRLF-->
@Repository
<!--CRLF-->
public class AccountDaoImpl<t style="color: #0000ff">extends Account&gt; <span style="color: #0000ff">implements</span> AccountDao<t> {</t></t>
<!--CRLF-->
    
<!--CRLF-->
    @Inject
<!--CRLF-->
    private AccountMapper mapper;
<!--CRLF-->
    
<!--CRLF-->
    public boolean addAccount(T entity) throws DataAccessException {
<!--CRLF-->
        boolean flag = false;
<!--CRLF-->
        try {
<!--CRLF-->
            mapper.addAccount(entity);
<!--CRLF-->
            flag = true;
<!--CRLF-->
        } catch (DataAccessException e) {
<!--CRLF-->
            flag = false;
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return flag;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public T getAccount(Integer id) throws DataAccessException {
<!--CRLF-->
        T entity = null;
<!--CRLF-->
        try {
<!--CRLF-->
            entity = (T) mapper.getAccountById(String.valueOf(id));
<!--CRLF-->
        } catch (DataAccessException e) {
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return entity;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public List<t> getList() <span style="color: #0000ff">throws</span> DataAccessException {</t>
<!--CRLF-->
        return (List<t>) mapper.getAllAccount();</t>
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

13、 服务层AccountBiz接口及实现代码

接口:

package com.hoo.biz;
<!--CRLF-->

<!--CRLF-->

    
import java.util.List;
<!--CRLF-->
import org.springframework.dao.DataAccessException;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function: biz层Account接口
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-13 上午11:33:04
<!--CRLF-->
 * @file AccountBiz.java
<!--CRLF-->
 * @package com.hoo.biz
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
public interface AccountBiz<t> {</t>
<!--CRLF-->
    /**
<!--CRLF-->
     * function: 添加Account对象信息
<!--CRLF-->
     * @author hoojo
<!--CRLF-->
     * @createDate 2011-4-13 上午11:50:05
<!--CRLF-->
     * @param entity Account
<!--CRLF-->
     * @return boolean 是否成功
<!--CRLF-->
     * @throws DataAccessException
<!--CRLF-->
     */
<!--CRLF-->
    public boolean addAccount(T entity) throws DataAccessException;
<!--CRLF-->
    
<!--CRLF-->
    /**
<!--CRLF-->
     * function: 根据id对到Account信息
<!--CRLF-->
     * @author hoojo
<!--CRLF-->
     * @createDate 2011-4-13 上午11:50:45
<!--CRLF-->
     * @param id 编号id
<!--CRLF-->
     * @return Account
<!--CRLF-->
     * @throws DataAccessException
<!--CRLF-->
     */
<!--CRLF-->
    public T getAccount(Integer id) throws DataAccessException;
<!--CRLF-->
    
<!--CRLF-->
    /**
<!--CRLF-->
     * function: 查询所有Account信息
<!--CRLF-->
     * @author hoojo
<!--CRLF-->
     * @createDate 2011-4-13 上午11:51:45
<!--CRLF-->
     * @param id 编号id
<!--CRLF-->
     * @return Account
<!--CRLF-->
     * @throws DataAccessException
<!--CRLF-->
     */
<!--CRLF-->
    public List<t> getList() <span style="color: #0000ff">throws</span> DataAccessException;</t>
<!--CRLF-->
}
<!--CRLF-->

实现代码:

package com.hoo.biz.impl;
<!--CRLF-->

<!--CRLF-->

    
import java.util.List;
<!--CRLF-->
import javax.inject.Inject;
<!--CRLF-->
import org.springframework.dao.DataAccessException;
<!--CRLF-->
import org.springframework.stereotype.Service;
<!--CRLF-->
import com.hoo.biz.AccountBiz;
<!--CRLF-->
import com.hoo.dao.AccountDao;
<!--CRLF-->
import com.hoo.entity.Account;
<!--CRLF-->
import com.hoo.exception.BizException;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function: Account Biz接口实现
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-13 上午11:34:39
<!--CRLF-->
 * @file AccountBizImpl.java
<!--CRLF-->
 * @package com.hoo.biz.impl
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
//@Component
<!--CRLF-->
@Service
<!--CRLF-->
public class AccountBizImpl<t style="color: #0000ff">extends Account&gt; <span style="color: #0000ff">implements</span> AccountBiz<t> {</t></t>
<!--CRLF-->
    
<!--CRLF-->
    @Inject
<!--CRLF-->
    private AccountDao<t> dao;</t>
<!--CRLF-->
    
<!--CRLF-->
    public boolean addAccount(T entity) throws DataAccessException {
<!--CRLF-->
        if (entity == null) {
<!--CRLF-->
            throw new BizException(Account.class.getName() + "对象参数信息为Empty!");
<!--CRLF-->
        }
<!--CRLF-->
        return dao.addAccount(entity);
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public T getAccount(Integer id) throws DataAccessException {
<!--CRLF-->
        return dao.getAccount(id);
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public List<t> getList() <span style="color: #0000ff">throws</span> DataAccessException {</t>
<!--CRLF-->
        return dao.getList();
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

上面用到了一个自定义的异常信息,代码如下:

package com.hoo.exception;
<!--CRLF-->

<!--CRLF-->

    
import org.springframework.dao.DataAccessException;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function:自定义Biz层异常信息
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-13 上午11:42:19
<!--CRLF-->
 * @file BizException.java
<!--CRLF-->
 * @package com.hoo.exception
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
public class BizException extends DataAccessException {
<!--CRLF-->

<!--CRLF-->

    
    /**
<!--CRLF-->
     * @author Hoojo
<!--CRLF-->
     */
<!--CRLF-->
    private static final long serialVersionUID = 1L;
<!--CRLF-->
    
<!--CRLF-->
    public BizException(String msg) {
<!--CRLF-->
        super(msg);
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public BizException(String msg, Throwable cause) {
<!--CRLF-->
        super(msg, cause);
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

这里只是简单的继承,如果还有其他的异常业务或需求可以进行具体的实现

14、 springMVC的控制器,AccountController代码如下:

package com.hoo.controller;
<!--CRLF-->

<!--CRLF-->

    
import javax.inject.Inject;
<!--CRLF-->
import javax.servlet.http.HttpServletRequest;
<!--CRLF-->
import org.springframework.stereotype.Controller;
<!--CRLF-->
import org.springframework.ui.Model;
<!--CRLF-->
import org.springframework.web.bind.annotation.ExceptionHandler;
<!--CRLF-->
import org.springframework.web.bind.annotation.RequestMapping;
<!--CRLF-->
import com.hoo.biz.AccountBiz;
<!--CRLF-->
import com.hoo.entity.Account;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function: Account控制器
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-13 上午10:18:02
<!--CRLF-->
 * @file AccountController.java
<!--CRLF-->
 * @package com.hoo.controller
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
@Controller
<!--CRLF-->
@RequestMapping("/account")
<!--CRLF-->
public class AccountController {
<!--CRLF-->
    
<!--CRLF-->
    @Inject
<!--CRLF-->
    private AccountBiz<account> biz;</account>
<!--CRLF-->
    
<!--CRLF-->
    @RequestMapping("/add")
<!--CRLF-->
    public String add(Account acc) {
<!--CRLF-->
        System.out.println(acc);
<!--CRLF-->
        biz.addAccount(acc);
<!--CRLF-->
        return "redirect:/account/list.do";
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    @RequestMapping("/get")
<!--CRLF-->
    public String get(Integer id, Model model) {
<!--CRLF-->
        System.out.println("##ID:" + id);
<!--CRLF-->
        model.addAttribute(biz.getAccount(id));
<!--CRLF-->
        return "/show.jsp";
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    @RequestMapping("/list")
<!--CRLF-->
    public String list(Model model) {
<!--CRLF-->
        model.addAttribute("list", biz.getList());
<!--CRLF-->
        return "/list.jsp";
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    @ExceptionHandler(Exception.class)
<!--CRLF-->
    public String exception(Exception e, HttpServletRequest request) {
<!--CRLF-->
        //e.printStackTrace();
<!--CRLF-->
        request.setAttribute("exception", e);
<!--CRLF-->
        return "/error.jsp";
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

15、 基本页面代码

index.jsp

"java" import="java.util.*" pageEncoding="UTF-8"%>
<!--CRLF-->
<!--CRLF-->

    
String path = request.getContextPath();
<!--CRLF-->
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
<!--CRLF-->
%>
<!--CRLF-->

<!--CRLF-->

    
span style="color: #006080">"-//W3C//DTD HTML 4.01 Transitional//EN">
<!--CRLF-->

<!--CRLF-->

    
  
<!--CRLF-->
    <base href="&lt;span" style="color: #006080">"">
<!--CRLF-->
    
<!--CRLF-->
    MyBatis 整合  Spring 3.0.5
<!--CRLF-->
    <meta http-equiv="&lt;span" style="color: #006080">"pragma" content="no-cache">
<!--CRLF-->
    <meta http-equiv="&lt;span" style="color: #006080">"cache-control" content="no-cache">
<!--CRLF-->
    <meta http-equiv="&lt;span" style="color: #006080">"expires" content="0">    
<!--CRLF-->
    <meta http-equiv="&lt;span" style="color: #006080">"keywords" content="keyword1,keyword2,keyword3">
<!--CRLF-->
    <meta http-equiv="&lt;span" style="color: #006080">"description" content="This is my page">
<!--CRLF-->
  
<!--CRLF-->
  
<!--CRLF-->
  
<!--CRLF-->
          

MyBatis 3.0.4 整合 Spring 3.0.5

<!--CRLF-->
        "account/list.do">查询所有
<!--CRLF-->
        "account/add.do?username=abcdef&password=123132&status=2">添加
<!--CRLF-->
        "account/get.do?id=25">查询
<!--CRLF-->
  
<!--CRLF-->

<!--CRLF-->

List.jsp

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!--CRLF-->
%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!--CRLF-->
%
<!--CRLF-->
String path = request.getContextPath();
<!--CRLF-->
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
<!--CRLF-->
%>
<!--CRLF-->

<!--CRLF-->

    
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--CRLF-->
html>
<!--CRLF-->
  head>
<!--CRLF-->
    base href="%=basePath%>">
<!--CRLF-->
    
<!--CRLF-->
    title>all Account Result/title>
<!--CRLF-->
    
<!--CRLF-->
    meta http-equiv="pragma" content="no-cache">
<!--CRLF-->
    meta http-equiv="cache-control" content="no-cache">
<!--CRLF-->
    meta http-equiv="expires" content="0">    
<!--CRLF-->
    meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<!--CRLF-->
    meta http-equiv="description" content="This is my page">
<!--CRLF-->
  /head>
<!--CRLF-->
  
<!--CRLF-->
  body>
<!--CRLF-->
        c:forEach items="${list}" var="data">
<!--CRLF-->
            id: ${data.accountId }---name: ${data.username }---password: ${data.password }hr/> 
<!--CRLF-->
        /c:forEach>
<!--CRLF-->
  /body>
<!--CRLF-->
/html>
<!--CRLF-->

show.jsp

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!--CRLF-->
%
<!--CRLF-->
String path = request.getContextPath();
<!--CRLF-->
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
<!--CRLF-->
%>
<!--CRLF-->

<!--CRLF-->

    
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--CRLF-->
html>
<!--CRLF-->
  head>
<!--CRLF-->
    base href="%=basePath%>">
<!--CRLF-->
    
<!--CRLF-->
    title>show Account/title>
<!--CRLF-->
    
<!--CRLF-->
    meta http-equiv="pragma" content="no-cache">
<!--CRLF-->
    meta http-equiv="cache-control" content="no-cache">
<!--CRLF-->
    meta http-equiv="expires" content="0">    
<!--CRLF-->
    meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<!--CRLF-->
    meta http-equiv="description" content="This is my page">
<!--CRLF-->
  /head>
<!--CRLF-->
  
<!--CRLF-->
  body>
<!--CRLF-->
        ${account }br/>
<!--CRLF-->
        ${account.username }#${account.accountId }
<!--CRLF-->
  /body>
<!--CRLF-->
/html>
<!--CRLF-->

<!--CRLF-->

error.jsp

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<!--CRLF-->
%
<!--CRLF-->
String path = request.getContextPath();
<!--CRLF-->
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
<!--CRLF-->
%>
<!--CRLF-->

<!--CRLF-->

    
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!--CRLF-->
html>
<!--CRLF-->
  head>
<!--CRLF-->
    base href="%=basePath%>">
<!--CRLF-->
    
<!--CRLF-->
    title>Error Page/title>
<!--CRLF-->
    
<!--CRLF-->
    meta http-equiv="pragma" content="no-cache">
<!--CRLF-->
    meta http-equiv="cache-control" content="no-cache">
<!--CRLF-->
    meta http-equiv="expires" content="0">    
<!--CRLF-->
    meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<!--CRLF-->
    meta http-equiv="description" content="This is my page">
<!--CRLF-->
  /head>
<!--CRLF-->
  
<!--CRLF-->
  body>
<!--CRLF-->
    H2>Exception: ${exception }/H2> 
<!--CRLF-->
    a href="javascript:document.getElementById('show').style.display = 'block';void(0);">
<!--CRLF-->
        详细信息
<!--CRLF-->
    /a> 
<!--CRLF-->
    div id="show" style="color: red; display: none;">
<!--CRLF-->
        % Exception ex = (Exception)request.getAttribute("exception"); %> 
<!--CRLF-->
        
<!--CRLF-->
        % ex.printStackTrace(new java.io.PrintWriter(out)); %>
<!--CRLF-->
    /div> 
<!--CRLF-->
  /body>
<!--CRLF-->
/html>
<!--CRLF-->

16、 以上就基本上完成了整个Spring+SpringMVC+MyBatis的整合了。如果你想添加事务管理,得在applicationContext-common.xml中加入如下配置:

<!-- 配置事务管理器,注意这里的dataSource和SqlSessionFactoryBean的dataSource要一致,不然事务就没有作用了 -->
<!--CRLF-->
bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!--CRLF-->
        property name="dataSource" ref="dataSource" />
<!--CRLF-->
bean>
<!--CRLF-->

同时还需要加入aspectjweaver.jar这个jar包;

注意的是:Jdbc的TransactionManager不支持事务隔离级别,我在整个地方加入其它的TransactionManager,增加对transaction的隔离级别都尝试失败!

也许可以用于jpa、jdo、jta这方面的东西。不知道大家对MyBatis的事务是怎么处理的?

17、 对Dao进行扩展封装,运用SqlSessionDaoSupport进行模板的扩展或运用:

BaseDao代码如下:

package com.hoo.dao.impl;
<!--CRLF-->

<!--CRLF-->

    
import java.util.ArrayList;
<!--CRLF-->
import java.util.List;
<!--CRLF-->
import javax.inject.Inject;
<!--CRLF-->
import org.apache.ibatis.session.SqlSessionFactory;
<!--CRLF-->
import org.mybatis.spring.support.SqlSessionDaoSupport;
<!--CRLF-->
import org.springframework.stereotype.Repository;
<!--CRLF-->
import com.hoo.dao.BaseDao;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function: 运用SqlSessionDaoSupport封装Dao常用增删改方法,可以进行扩展
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-13 下午06:33:37
<!--CRLF-->
 * @file BaseDaoImpl.java
<!--CRLF-->
 * @package com.hoo.dao.impl
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
@Repository
<!--CRLF-->
@SuppressWarnings({ "unchecked", "unused" })
<!--CRLF-->
public class BaseDaoImpl<t style="color: #0000ff">extends Object&gt; <span style="color: #0000ff">extends</span> SqlSessionDaoSupport <span style="color: #0000ff">implements</span> BaseDao<t> {</t></t>
<!--CRLF-->
    
<!--CRLF-->
    @Inject
<!--CRLF-->
    private SqlSessionFactory sqlSessionFactory;
<!--CRLF-->
    
<!--CRLF-->
    public boolean add(String classMethod, T entity) throws Exception {
<!--CRLF-->
        boolean flag = false;
<!--CRLF-->
        try {
<!--CRLF-->
            flag = this.getSqlSession().insert(classMethod, entity) > 0 ? true : false;
<!--CRLF-->
        } catch (Exception e) {
<!--CRLF-->
            flag = false;
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return flag;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public boolean edit(String classMethod, T entity) throws Exception {
<!--CRLF-->
        boolean flag = false;
<!--CRLF-->
        try {
<!--CRLF-->
            flag = this.getSqlSession().update(classMethod, entity) > 0 ? true : false;
<!--CRLF-->
        } catch (Exception e) {
<!--CRLF-->
            flag = false;
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return flag;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public T get(String classMethod, T entity) throws Exception {
<!--CRLF-->
        T result = null;
<!--CRLF-->
        try {
<!--CRLF-->
            result = (T) this.getSqlSession().selectOne(classMethod, entity);
<!--CRLF-->
        } catch (Exception e) {
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return result;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public List<t> getAll(String classMethod) <span style="color: #0000ff">throws</span> Exception {</t>
<!--CRLF-->
        List<t> result = <span style="color: #0000ff">new</span> ArrayList<t>();</t></t>
<!--CRLF-->
        try {
<!--CRLF-->
            result = this.getSqlSession().selectList(classMethod);
<!--CRLF-->
        } catch (Exception e) {
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return result;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public boolean remove(String classMethod, T entity) throws Exception {
<!--CRLF-->
        boolean flag = false;
<!--CRLF-->
        try {
<!--CRLF-->
            flag = this.getSqlSession().delete(classMethod, entity) > 0 ? true : false;
<!--CRLF-->
        } catch (Exception e) {
<!--CRLF-->
            flag = false;
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return flag;
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

值得说明的是,这个类继承了SqlSessionDaoSupport,它需要我们帮助它注入SqlSessionFactory或是SqlSessionTemplate,如果两者都被注入将忽略SqlSessionFactory属性,使用SqlSessionTemplate模板。

继承SqlSessionDaoSupport后,可以拿到SqlSession完成数据库的操作;

18、 对Dao进行扩展封装,运用SqlSessionTemplate进行模板的扩展或运用:

首先看看这个组件中运用的一个Mapper的基类接口:

package com.hoo.mapper;
<!--CRLF-->

<!--CRLF-->

    
import java.util.List;
<!--CRLF-->
import org.springframework.dao.DataAccessException;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function: BaseSqlMapper继承SqlMapper,对Mapper进行接口封装,提供常用的增删改查组件;
<!--CRLF-->
 * 也可以对该接口进行扩展和封装
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-14 上午11:36:41
<!--CRLF-->
 * @file BaseSqlMapper.java
<!--CRLF-->
 * @package com.hoo.mapper
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
public interface BaseSqlMapper<t><span style="color: #0000ff">extends</span> SqlMapper {</t>
<!--CRLF-->
    
<!--CRLF-->
    public void add(T entity) throws DataAccessException;
<!--CRLF-->
    
<!--CRLF-->
    public void edit(T entity) throws DataAccessException;
<!--CRLF-->
    
<!--CRLF-->
    public void remvoe(T entity) throws DataAccessException;
<!--CRLF-->
    
<!--CRLF-->
    public T get(T entity) throws DataAccessException;
<!--CRLF-->
    
<!--CRLF-->
    public List<t> getList(T entity) <span style="color: #0000ff">throws</span> DataAccessException;</t>
<!--CRLF-->
}
<!--CRLF-->

该接口继承SqlMapper接口,但是该接口没有MyBatis的mapper实现。需要我们自己的业务mapper继承这个接口,完成上面的方法的实现。

看看继承SqlSessionTemplate的BaseMapperDao代码:

package com.hoo.dao.impl;
<!--CRLF-->

<!--CRLF-->

    
import java.util.List;
<!--CRLF-->
import javax.inject.Inject;
<!--CRLF-->
import org.apache.ibatis.session.SqlSessionFactory;
<!--CRLF-->
import org.mybatis.spring.SqlSessionTemplate;
<!--CRLF-->
import org.springframework.stereotype.Repository;
<!--CRLF-->
import com.hoo.dao.BaseMapperDao;
<!--CRLF-->
import com.hoo.mapper.BaseSqlMapper;
<!--CRLF-->

<!--CRLF-->

    
/**
<!--CRLF-->
 * function:运用SqlSessionTemplate封装Dao常用增删改方法,可以进行扩展
<!--CRLF-->
 * @author hoojo
<!--CRLF-->
 * @createDate 2011-4-14 下午12:22:07
<!--CRLF-->
 * @file BaseMapperDaoImpl.java
<!--CRLF-->
 * @package com.hoo.dao.impl
<!--CRLF-->
 * @project MyBatisForSpring
<!--CRLF-->
 * @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
 * @email hoojo_@126.com
<!--CRLF-->
 * @version 1.0
<!--CRLF-->
 */
<!--CRLF-->
@SuppressWarnings("unchecked")
<!--CRLF-->
@Repository
<!--CRLF-->
public class BaseMapperDaoImpl<t><span style="color: #0000ff">extends</span> SqlSessionTemplate <span style="color: #0000ff">implements</span> BaseMapperDao<t> {</t></t>
<!--CRLF-->
    
<!--CRLF-->
    @Inject
<!--CRLF-->
    public BaseMapperDaoImpl(SqlSessionFactory sqlSessionFactory) {
<!--CRLF-->
        super(sqlSessionFactory);
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    private Class extends BaseSqlMapper> mapperClass;
<!--CRLF-->
    
<!--CRLF-->
    public void setMapperClass(Class extends BaseSqlMapper> mapperClass) {
<!--CRLF-->
        this.mapperClass = mapperClass;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    private BaseSqlMapper<t> getMapper() {</t>
<!--CRLF-->
        return this.getMapper(mapperClass);
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public boolean add(T entity) throws Exception {
<!--CRLF-->
        boolean flag = false;
<!--CRLF-->
        try {
<!--CRLF-->
            this.getMapper().add(entity);
<!--CRLF-->
            flag = true;
<!--CRLF-->
        } catch (Exception e) {
<!--CRLF-->
            flag = false;
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return flag;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public boolean edit(T entity) throws Exception {
<!--CRLF-->
        boolean flag = false;
<!--CRLF-->
        try {
<!--CRLF-->
            this.getMapper().edit(entity);
<!--CRLF-->
            flag = true;
<!--CRLF-->
        } catch (Exception e) {
<!--CRLF-->
            flag = false;
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return flag;
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public T get(T entity) throws Exception {
<!--CRLF-->
        return this.getMapper().get(entity);
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public List<t> getAll() <span style="color: #0000ff">throws</span> Exception {</t>
<!--CRLF-->
        return this.getMapper().getList(null);
<!--CRLF-->
    }
<!--CRLF-->

<!--CRLF-->

    
    public boolean remove(T entity) throws Exception {
<!--CRLF-->
        boolean flag = false;
<!--CRLF-->
        try {
<!--CRLF-->
            this.getMapper().remvoe(entity);
<!--CRLF-->
            flag = true;
<!--CRLF-->
        } catch (Exception e) {
<!--CRLF-->
            flag = false;
<!--CRLF-->
            throw e;
<!--CRLF-->
        }
<!--CRLF-->
        return flag;
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

上面这个类继承了SqlSessionTemplate,这个类需要提供一个构造函数。这里提供的是SqlSessionFactory的构造函数,通过该函数注入SqlSessionFactory即可完成数据库操作;

例外的是这个类还有一个关键属性mapperClass,这个class需要是BaseSqlMapper接口或是子接口,然后通过SqlSessionTemplate模板获得当前设置的Class的Mapper对象,完成数据库操作。

该类的测试代码:

@ContextConfiguration("classpath:applicationContext-*.xml")
<!--CRLF-->
public class BaseMapperDaoImplTest extends AbstractJUnit38SpringContextTests {
<!--CRLF-->
    
<!--CRLF-->
    @Inject
<!--CRLF-->
    private BaseMapperDao<company> dao;</company>
<!--CRLF-->
    
<!--CRLF-->
    public void init() {
<!--CRLF-->
        dao.setMapperClass(CompanyMapper.class);
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testGet() throws Exception {
<!--CRLF-->
        init();
<!--CRLF-->
        Company c = new Company();
<!--CRLF-->
        c.setCompanyId(4);
<!--CRLF-->
        System.out.println(dao.get(c));
<!--CRLF-->
    }
<!--CRLF-->
    
<!--CRLF-->
    public void testAdd() throws Exception {
<!--CRLF-->
        init();
<!--CRLF-->
        Company c = new Company();
<!--CRLF-->
        c.setAddress("北京中关村");
<!--CRLF-->
        c.setName("beijin");
<!--CRLF-->
        System.out.println(dao.add(c));
<!--CRLF-->
    }
<!--CRLF-->
}
<!--CRLF-->

一般情况下,你可以在一个Dao中注入BaseMapperDao,紧跟着需要设置MapperClass。只有设置了MapperClass后,BaseMapperDao才能获取对应mapper,完成相关的数据库操作。当然你可以在这个Dao中将SqlSessionTemplate、SqlSession暴露出来,当BaseMapperDao的方法不够用,可以进行扩展。

分享到:
评论

相关推荐

    mybatis3+spring+springMVC4整合jar包.rar

    标题 "mybatis3+spring+springMVC4整合jar包.rar" 描述的是一个整合了MyBatis 3、Spring 4 和 Spring MVC 4 的项目压缩包。这个压缩包通常用于快速搭建一个基于Java的Web开发环境,尤其是用于处理数据库操作和前端...

    MyBatis 3 整合Spring3、SpringMVC

    【整合MyBatis 3与Spring 3、SpringMVC】 在企业级应用开发中,MyBatis作为一款轻量级的持久层框架,与Spring的集成是常见的做法,可以实现灵活的数据访问和事务管理。SpringMVC则用于处理前端请求,构建MVC架构。...

    Spring3+springmvc+mybatis三大整合

    在"Spring3+SpringMVC+MyBatis"的整合过程中,通常会使用Spring的ApplicationContext来加载配置,管理所有组件。SpringMVC的配置需要定义DispatcherServlet,配置视图解析器如InternalResourceViewResolver,以及...

    SpringMybatisSpringMvc整合包

    这个整合包中的jar包包括了Spring框架的core、context、aop、beans、web等模块,Mybatis的核心库和Spring Mybatis的整合模块,以及Spring MVC的相关组件。这些jar包涵盖了运行Spring、Mybatis和Spring MVC应用所需的...

    Spring+SpringMVC+Mybatis框架项目整合

    "Spring+SpringMVC+Mybatis框架项目整合"是一个典型的后端技术栈,旨在提供高效、灵活且可维护的解决方案。下面将详细介绍这三个框架及其整合过程中的关键知识点。 **Spring框架**: Spring是一个开源的Java平台,...

    Spring+SpringMVC+Mybatis框架整合例子(SSM) 下载

    Spring、SpringMVC和Mybatis是Java开发中最常用的三大开源框架,它们的整合使用,通常被称为SSM框架。这个框架组合提供了完整的后端服务解决方案,包括依赖注入(DI)、面向切面编程(AOP)、模型-视图-控制器(MVC...

    Spring-SpringMVC-Mybatis整合所有jar包

    这个压缩包“Spring-SpringMVC-Mybatis整合所有jar包”包含了这三个框架整合所需的全部依赖,使得开发者能够快速搭建起一个功能完备的后端服务。 1. **Spring框架**:Spring是一个全面的开源应用框架,它提供了对...

    Spring+SpringMVC+Mybatis框架整合源码

    标题中的“Spring+SpringMVC+Mybatis框架整合源码”指的是一个基于Java的Web开发项目,它结合了三个主流的开源框架:Spring、SpringMVC和Mybatis,以实现高效且灵活的企业级应用开发。这三种框架在Java世界中扮演着...

    Maven模块项目。整合spring+springmvc+mybatis

    "Maven模块项目"就是这样一个示例,它演示了如何利用Maven的模块化特性,结合Spring、SpringMVC和MyBatis这三大流行Java Web开发框架进行项目整合。下面将详细介绍这些知识点。 首先,Maven是Apache软件基金会开发...

    mybatis3+spring4完美整合jar包

    本压缩包"mybatis3+spring4完美整合jar包"提供了最新的整合版本,帮助开发者快速构建基于MyBatis3和Spring4的应用。 MyBatis3是一个轻量级的持久层框架,它简化了SQL操作,允许开发者直接编写SQL语句,避免了ORM...

    MyBatis 3 整合Spring3 SpringMVC

    在本文中,我们将探讨如何将MyBatis 3与Spring 3和Spring MVC进行整合,以便在一个Java EE项目中实现高效的数据访问和控制层管理。首先,我们需要确保有一个合适的开发环境,例如在Windows系统上使用支持Java EE 5的...

    MyBatis3整合Spring3,SpringMVC

    ### MyBatis3 整合 Spring3 和 SpringMVC 的详细步骤与原理 #### 一、概述 在现代企业级应用开发中,MyBatis、Spring 和 SpringMVC 是非常重要的技术栈组合。通过整合这三者,可以构建出功能强大、结构清晰且易于...

    springMvc+spring+Mybatis 实战案例 实用!

    Spring MVC、Spring 和 MyBatis 是Java开发领域中三大核心框架,它们的组合在实际项目中广泛应用,构建了企业级Web应用的后端基础架构。本实战案例将深入讲解这三个框架如何协同工作,以实现高效的数据处理和业务...

    spring springmvc mybatis 整合jar包

    spring springmvc mybatis的整合jar包,以及mysql,Junit,fastJson等的jar包,导入这些jar包 搭一个SSM的环境,可以使用SSM框架做一个简单的能够实现增删改查的小项目,具体的jar包及其版本如下 : aopalliance-1.0....

    spring/springmvc/mybatis所需jar包

    - `mybatis-spring.jar`:Spring与MyBatis的整合库,提供Spring Bean与MyBatis的Mapper接口之间的绑定。 除了这些核心jar包,还有一些其他的依赖库,例如: - `log4j.jar` 或 `slf4j-api.jar + slf4j-log4j12.jar`...

    springmvc3+spring+mybatis3整合项目 注解实现

    这个整合项目是基于Spring 3.0.5、Spring MVC 3和MyBatis 3.0.2版本,采用注解方式进行配置,简化了XML配置文件,提高了开发效率。 Spring MVC是Spring框架的一部分,主要负责Web请求的处理。在本项目中,通过注解...

    SpringMvc+Spring+Mybatis+Maven+注解方式=整合

    "SpringMvc+Spring+Mybatis+Maven+注解方式"是一个经典的Java后端技术栈,它整合了四个关键组件,为开发人员提供了强大的工具和框架支持。下面将详细讲解这四个组件及其整合方式。 1. **Spring Framework**: ...

    spring mybatis springmvc整合jar包总和

    4. 整合Spring、MyBatis与SpringMVC: - 配置Spring:首先,我们需要创建Spring的配置文件(如`applicationContext.xml`),配置Bean的定义,包括Spring的DataSource、SessionFactory(MyBatis)、...

Global site tag (gtag.js) - Google Analytics