1.在pom中添加Maven依赖

<!-- 通用Mapper -->
<dependency>
    <groupId>tk.mybatis</groupId>
    <artifactId>mapper</artifactId>
    <version>3.3.9</version>
</dependency>

2.SpringMVC配置

<!-- spring与mybatis整合配置,扫描所有dao -->
    <bean class="tk.mybatis.spring.mapper.MapperScannerConfigurer">
        <!-- 具体dao层包的位置在哪,视你新建的dao层java包而定 -->
        <property name="basePackage" value="com.gyt.persist.dao" />
        <!-- 通用 Mapper -->
        <property name="properties">
            <value>
                mappers=tk.mybatis.mapper.common.Mapper
            </value>
        </property>
    </bean>

*注意这里使用tk.mybatis.spring.mapper.MapperScannerConfigure替换原来Mybatis的org.mybatis.spring.mapper.MapperScannerConfigurer。

 

3.实体类的写法

@Table(name = "user")
public class User {

    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Column(name="id")
    private String id;

    @Column(name="name")
    private String name;

    @Column(name="sex")
    private String sex;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getSex() {
        return sex;
    }

    public void setSex(String sex) {
        this.sex = sex;
    }
    
}

*说明:

 

1.表名默认使用类名,驼峰转下划线(只对大写字母进行处理),如UserInfo默认对应的表名为user_info。

2.表名可以使用@Table(name = "tableName")进行指定,对不符合第一条默认规则的可以通过这种方式指定表名.

3.字段默认和@Column一样,都会作为表字段,表字段默认为Java对象的Field名字驼峰转下划线形式.

4.可以使用@Column(name = "fieldName")指定不符合第3条规则的字段名

5.使用@Transient注解可以忽略字段,添加该注解的字段不会作为表字段使用.

6.建议一定是有一个@Id注解作为主键的字段,可以有多个@Id注解的字段作为联合主键.

7.如果是MySQL的自增字段,加上@GeneratedValue(generator = "JDBC")即可。如果是其他数据库,可以参考官网文档。

 

4.Mapper接口的写法(DAO的写法)

public interface UserDao extends Mapper<User> {

}

1.在传统的Mybatis写法中,DAO接口需要与Mapper文件关联,即需要编写SQL来实现DAO接口中的方法。而在通用Mapper中,DAO只需要继承一个通用接口,即可拥有丰富的方法:

继承通用的Mapper,必须指定泛型

 

2.一旦继承了Mapper,继承的Mapper就拥有了Mapper所有的通用方法:

 

Select

方法:List<T> select(T record);

说明:根据实体中的属性值进行查询,查询条件使用等号

 

方法:T selectByPrimaryKey(Object key);

说明:根据主键字段进行查询,方法参数必须包含完整的主键属性,查询条件使用等号

 

方法:List<T> selectAll();

说明:查询全部结果,select(null)方法能达到同样的效果

 

方法:T selectOne(T record);

说明:根据实体中的属性进行查询,只能有一个返回值,有多个结果是抛出异常,查询条件使用等号

 

方法:int selectCount(T record);

说明:根据实体中的属性查询总数,查询条件使用等号

 

Insert

方法:int insert(T record);

说明:保存一个实体,null的属性也会保存,不会使用数据库默认值

 

方法:int insertSelective(T record);

说明:保存一个实体,null的属性不会保存,会使用数据库默认值

 

Update

方法:int updateByPrimaryKey(T record);

说明:根据主键更新实体全部字段,null值会被更新

 

方法:int updateByPrimaryKeySelective(T record);

说明:根据主键更新属性不为null的值

 

Delete

方法:int delete(T record);

说明:根据实体属性作为条件进行删除,查询条件使用等号

 

方法:int deleteByPrimaryKey(Object key);

说明:根据主键字段进行删除,方法参数必须包含完整的主键属性

 

Example方法

方法:List<T> selectByExample(Object example);

说明:根据Example条件进行查询

重点:这个查询支持通过Example类指定查询列,通过selectProperties方法指定查询列

 

方法:int selectCountByExample(Object example);

说明:根据Example条件进行查询总数

 

方法:int updateByExample(@Param("record") T record, @Param("example") Object example);

说明:根据Example条件更新实体record包含的全部属性,null值会被更新

 

方法:int updateByExampleSelective(@Param("record") T record, @Param("example") Object example);

说明:根据Example条件更新实体record包含的不是null的属性值

 

方法:int deleteByExample(Object example);

说明:根据Example条件删除数据