我有一堂课

public class Images{
    private int id;
    private byte[] img;
    private String name;
}


数据库T_image中的表(id tinyint,logo_img mediumblob,名称varchar)

我有一个dao界面

public interface ImgDAO{
  public List<byte[]> selectAllImg();
}


我想在mybatis的xml映射器中为此编写sqlmapper

最佳答案

像这样使用resultMap

<resultMap class="Images" id="imageResultMap">
       <result column="logo_img" property="img" jdbcType="BLOB"/>
  </resultMap>

  <select id="selectAllImg" resultMap="imageResultMap">
        select logo_img from T_image
  </select>

关于java - 如何使用Mybatis选择存储在mysql数据库中的镜像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30662433/

10-11 08:47