MyBatis实用技巧

Mapper的继承

在不改动原来的Mapper.xml情况下,进行扩展,很实用。

Mapper接口继承:

@MybatisMapperpublic interface ItemMapper {

  Item getById(@Param("id") Long id);

}

@MybatisMapper
public interface ItemExMapper extends ItemMapper {

}

Mapper.xml中:



  

  
    
  



  
  

  
    

你可能感兴趣的:(mybatis,数据库相关)