通用Mapper 的使用与常用方法

参考文档:

             https://www.cnblogs.com/zagwk/p/12671228.html

            https://www.cnblogs.com/cqyp/p/12813090.html

一、环境搭建

1.搭建Spring与Mybatis 的整合环境

2、导入Mapper的依赖坐标

 
        tk.mybatis
        mapper
        4.0.0-beta3


3.在spring配置文件中修改配置


    
 
        
    

二、AccountMapper的接口实现:继承Mapper接口,泛型为实体类

public interface AccountMapper extends Mapper {

}

三、在Service中注入

@Service
@Transactional
public class AccountServiceImpl {

    @Autowired
    private AccountMapper accountMapper;

    public Account getOne(Account account){
       return accountMapper.selectOne(account);
    }

}

四:测试

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
public class TestSpring {
    @Autowired
    private AccountServiceImpl accountService;
    @Test
    public void test01(){
        Account account=new Account();
        account.setName("张三");
        Account one = accountService.getOne(account);
        System.out.println(one);
    }
}

Tip:在创建实体类时,如果表名和表中属性名与数据库中不一致可使用注解:@table、@Column数据库中表名或者字段名:tb_user   对应   实体类的名字: tbUser

/**
 * @Table :name:指定数据库中表的名称
 */
@Table(name = "account")
public class account{
   /**
   *  @Id: 主键
   *   @GeneratedValue(strategy = GenerationType.IDENTITY) :主键自增
   */
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    
    @Column(name="cid")
    private Long cid;

    private String name;
    //此注解可以使改属性不映射到数据库表中
    @Transient
    private List params;

五、常用方法

Select

方法:List select(T record);
说明:根据实体中的属性值进行查询,查询条件使用等号

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

方法:List 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 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条件删除数据

你可能感兴趣的:(Java)