Mybatis中的通用mapper的使用

来源:互联网 发布:域名举报需要多少人 编辑:程序博客网 时间:2024/06/06 15:52
Mybatis中的通用mapper的使用
1、在maven中添加依赖
<dependency>    <groupId>com.github.abel533</groupId>    <artifactId>mapper</artifactId>    <version>2.3.4</version></dependency>
2、集成通用mapper
对com.github.abel533.mapper.Mapper的集成,实际上是配置MapperHelper。一共有三种方式:针对Java编码、和Spring集成和使用拦截器配置。
(1)Java编码
对于单独使用Mybatis,首先通过如下方式创建sqlSessionFactory:
Reader reader = Resources.getResourceAsReader("mybatis-config.xml");sqlSessionFactory = new SqlSessionFactoryBuilder().build(reader);reader.close();
之后直接使用JAVA编码,可以在初始化sqlSessionFactory的地方按照下面的方式操作:
//从上面的sqlSessionFactory取出一个sessionsession = sqlSessionFactory.openSession();//创建一个MapperHelperMapperHelper mapperHelper = new MapperHelper();// 设置UUID生成策略,配置UUID生成策略需要使用OGNL表达式// 默认值32位长度:@java.util.UUID@randomUUID().toString().replace("-", "")mapperHelper.setUUID("");// 主键自增回写方法,默认值MYSQL,详细说明请看文档mapperHelper.setIDENTITY("HSQLDB");// 序列的获取规则,使用{num}格式化参数,默认值为{0}.nextval,// 针对Oracle可选参数一共3个,对应0,1,2,分别为SequenceName,ColumnName, PropertyNamemapperHelper.setSeqFormat("NEXT VALUE FOR {0}");// 设置全局的catalog,默认为空,如果设置了值,操作表时的sql会是catalog.tablenamemapperHelper.setCatalog("");// 设置全局的schema,默认为空,如果设置了值,操作表时的sql会是schema.tablename// 如果同时设置了catalog,优先使用catalog.tablenamemapperHelper.setSchema("");// 主键自增回写方法执行顺序,默认AFTER,可选值为(BEFORE|AFTER)mapperHelper.setOrder("AFTER");// 注册通用Mapper接口mapperHelper.registerMapper(Mapper.class);mapperHelper.registerMapper(HsqldbMapper.class);//配置完成后,执行下面的操作mapperHelper.processConfiguration(session.getConfiguration());//OK - mapperHelper的任务已经完成
上面配置参数的时候,是一个个调用set方法进行的,你还可以使用MapperHelper的MapperHelper(Properties properties)构造方法,或者调用setProperties(properties)方法,通过.properties配置文件来配置。
(2)和Spring集成
在结合Spring使用的时候,可以通过xml配置文件达到上面Java编码方式的效果。如下配置:
<bean class="com.github.abel533.mapperhelper.MapperHelper"        depends-on="sqlSession" init-method="initMapper" scope="singleton" lazy-init="false">    <property name="mappers">        <array>            <!-- 可以配置多个 -->            <value>com.kang.mybatis.userMapper.mapper</value>        </array>    </property>    <!-- 对于多数据源,这里也可以像上面这样配置多个 -->    <property name="sqlSessions" ref="sqlSession"/></bean>
可以看到配置中依赖了sqlSession,所以使用这种方式,你还要在Spring的配置中保证sqlSession存在。一般情况下都会在Spring定义sqlSession。一般的定义方法如下:
<bean id="sqlSession" class="org.mybatis.spring.SqlSessionTemplate" scope="prototype">    <constructor-arg index="0" ref="sqlSessionFactory"/></bean>
在Spring中使用这种方式的时候,Spring启动完成的时候,所有的通用Mapper都已经处理完成了。后面就可以直接使用通用方法,不需要拦截器来执行了。
注意:目前和Spring集成的时候存在一个bug,这个bug产生的原因如下:
如果你的Mapper没有在项目启动的时候通过@Autowired注入到Service或者其他类中,那么这个Mapper是一个还没有注册到MybatisSqlSession中的Mapper,MapperHelper在启动过程中没有处理该Mapper,这就会导致dynamicSQL无法实例化一类的异常。这种情况只能使用拦截器处理。
(3)拦截器
注意这三种配置方式只需选择其一即可,无需重复配置。
基于拦截器的配置方式分为mybatis配置方式和纯spring集成方式。
首先是Mybatis配置文件方式:
在mybatis-config.xml中添加如下配置:
<plugins>  <plugin interceptor="com.github.abel533.mapperhelper.MapperInterceptor">    <!--================================================-->    <!--可配置参数说明(一般无需修改)-->    <!--================================================-->    <!--UUID生成策略-->    <!--配置UUID生成策略需要使用OGNL表达式-->    <!--默认值32位长度:@java.util.UUID@randomUUID().toString().replace("-", "")-->    <!--<property name="UUID" value="@java.util.UUID@randomUUID().toString()"/>-->    <!--主键自增回写方法,默认值MYSQL,详细说明请看文档-->    <property name="IDENTITY" value="HSQLDB"/>    <!--序列的获取规则,使用{num}格式化参数,默认值为{0}.nextval,针对Oracle-->    <!--可选参数一共3个,对应0,1,2,分别为SequenceName,ColumnName,PropertyName-->    <property name="seqFormat" value="{0}.nextval"/>    <!--主键自增回写方法执行顺序,默认AFTER,可选值为(BEFORE|AFTER)-->    <!--<property name="ORDER" value="AFTER"/>-->    <!--通用Mapper接口,多个通用接口用逗号隔开-->    <property name="mappers" value="com.github.abel533.mapper.Mapper"/>  </plugin></plugins>
然后是纯Spring配置方式:
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">  <property name="dataSource" ref="dataSource"/>  <property name="mapperLocations">    <array>      <value>classpath:mapper/*.xml</value>      <value>classpath:com/isea533/mybatis/mapper/*.xml</value>    </array>  </property>  <property name="typeAliasesPackage" value="com.isea533.mybatis.model"/>  <property name="plugins">    <array>      <bean class="com.github.abel533.mapperhelper.MapperInterceptor">        <property name="properties">          <!-- 属性一行一个,具体属性参考mybatis-config.xml中的属性 -->          <value>            mappers=com.github.abel533.mapper.Mapper          </value>        </property>      </bean>    </array>  </property></bean>
3、自定义接口mapper集成通用mapper
我们可以自定义mapper接口继承通用的Mapper<T>,但必须必须指定泛型<T>
例如下面的例子:
public interface UserMapper extends Mapper<User> {
}
一旦继承了Mapper<T>,继承的Mapper即UserInfoMapper就拥有了以下通用的方法:

//根据实体类不为null的字段进行查询,条件全部使用=号and条件List<T> select(T record);//根据实体类不为null的字段查询总数,条件全部使用=号and条件int selectCount(T record);//根据主键进行查询,必须保证结果唯一//单个字段做主键时,可以直接写主键的值//联合主键时,key可以是实体类,也可以是MapT selectByPrimaryKey(Object key);//插入一条数据//支持Oracle序列,UUID,类似Mysql的INDENTITY自动增长(自动回写)//优先使用传入的参数值,参数值空时,才会使用序列、UUID,自动增长int insert(T record);//插入一条数据,只插入不为null的字段,不会影响有默认值的字段//支持Oracle序列,UUID,类似Mysql的INDENTITY自动增长(自动回写)//优先使用传入的参数值,参数值空时,才会使用序列、UUID,自动增长int insertSelective(T record);//根据实体类中字段不为null的条件进行删除,条件全部使用=号and条件int delete(T key);//通过主键进行删除,这里最多只会删除一条数据//单个字段做主键时,可以直接写主键的值//联合主键时,key可以是实体类,也可以是Mapint deleteByPrimaryKey(Object key);//根据主键进行更新,这里最多只会更新一条数据//参数为实体类int updateByPrimaryKey(T record);//根据主键进行更新//只会更新不是null的数据int updateByPrimaryKeySelective(T record);//根据Exmaple条件查询总数int selectCountByExample(Object example);//根据Exmaple条件删除int deleteByExample(Object example);//根据Exmaple条件查询List<T> selectByExample(Object example);//根据Exmaple条件更新非空(null)字段int updateByExampleSelective(@Param("record") T record, @Param("example") Object example);//根据Exmaple条件更新全部字段int updateByExample(@Param("record") T record, @Param("example") Object example);
但是泛型(实体类)<T>的类型必须符合如下要求:
实体类按照如下规则和数据库表进行转换,注解全部是JPA中的注解:
1)表名默认使用类名,驼峰转下划线(只对大写字母进行处理),如UserInfo默认对应的表名为user_info。
2)表名可以使用@Table(name = "tableName")进行指定,对不符合第一条默认规则的可以通过这种方式指定表名.
3)字段默认和@Column一样,都会作为表字段,表字段默认为Java对象的Field名字驼峰转下划线形式.
4)可以使用@Column(name = "fieldName")指定不符合第3条规则的字段名。
5)使用@Transient注解可以忽略字段,添加该注解的字段不会作为表字段使用。
6)建议一定要配置一个@Id注解作为主键的字段,可以有多个@Id注解的字段作为联合主键。
7)默认情况下,实体类中如果不存在包含@Id注解的字段,所有的字段都会作为主键字段进行使用(这种效率极低).
8)实体类可以继承使用。
9)由于基本类型,如int作为实体类字段时会有默认值0,而且无法消除,所以实体类中建议不要使用基本类型,建议使用基本类型的包装类型如Integer,Long等类型。
除了上面提到的这些,Mapper还提供了序列(支持Oracle)、UUID(任意数据库,字段长度32)、主键自增(类似Mysql,Hsqldb)三种方式,其中序列和UUID可以配置多个,主键自增只能配置一个。
这三种方式不能同时使用,同时存在时按照 序列>UUID>主键自增的优先级进行选择.下面是具体配置方法:
1)使用序列可以添加如下的注解:
//可以用于数字类型,字符串类型(需数据库支持自动转型)的字段@SequenceGenerator(name="Any",sequenceName="seq_userid")@Idprivate Integer id;该字段不会回写。这种情况对应类似如下的XML:<insert id="insertAuthor">  insert into Author    (id, username, password, email,bio, favourite_section)  values    (seq_userid.nextval, #{username, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})</insert>
2)使用UUID时:
//可以用于任意字符串类型长度超过32位的字段@GeneratedValue(generator = "UUID")private String username;该字段不会回写。这种情况对应类似如下的XML:<insert id="insertAuthor">  <bind name="username_bind" value='@java.util.UUID@randomUUID().toString().replace("-", "")' />  insert into Author    (id, username, password, email,bio, favourite_section)  values    (#{id}, #{username_bind}, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})</insert>
3)使用主键自增:
//不限于@Id注解的字段,但是一个实体类中只能存在一个(继承关系中也只能存在一个)
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
增加这个注解后,会回写ID。
通过设置@GeneratedValue的generator参数可以支持更多的获取主键的方法,例如在Oracle中使用序列:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY,generator = "select SEQ_ID.nextval from dual")
private Integer id;
使用Oracle序列的时候,还需要配置:
<property name="ORDER" value="BEFORE"/>
因为在插入数据库前,需要先获取到序列值,否则会报错。
这种情况对于的xml类似下面这样:
<insert id="insertAuthor"><selectKey keyProperty="id" resultType="int" order="BEFORE">  select SEQ_ID.nextval from dual</selectKey>insert into Author  (id, username, password, email,bio, favourite_section)values  (#{id}, #{username}, #{password}, #{email}, #{bio}, #{favouriteSection,jdbcType=VARCHAR})</insert>
主键自增还有一种简单的写法:
//不限于@Id注解的字段,但是一个实体类中只能存在一个(继承关系中也只能存在一个)
@GeneratedValue(generator = "JDBC")
private Integer id;
这会令 MyBatis 使用 JDBC 的 getGeneratedKeys 方法来取出由数据库内部生成的主键(比如:像 MySQL 和 SQL Server 这样的关系数据库管理系统的自动递增字段)。 这种情况对应的xml类似下面这样:
<insert id="insertAuthor" useGeneratedKeys="true" keyProperty="id">insert into Author (username,password,email,bio)values (#{username},#{password},#{email},#{bio})</insert>
4、将通用mapper添加到Mybatis配置中
推荐使用spring集成的方式,只需要有下面的这个扫描Mapper接口的这个配置即可:如下
    <!-- 定义Mapper接口的扫描器 -->      <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">          <property name="basePackage" value="com.kang.mybatis.mapper"/>      </bean>  
如果想在Spring4中使用泛型注入,还需要包含Mapper<T>所在的包。


5、相关博客
spring集成Mybatis利用通用mapper和分页助手实现restful风格的编写


0 0
原创粉丝点击