时间:2020-05-16来源:电脑系统城作者:电脑系统城
1.创建用于接收blob类型的实体类
1 @Getter 2 @Setter 3 public class FileEntity implements Serializable { 4 private static final long serialVersionUID = -5544560514334406226L; 5 //附件类型 6 private String fileType; 7 //附件 8 private byte[] blob; 9 }
2.在mybaits xml 文件中 配置resultMap
1 <resultMap id="fileResultMap" type="com.domains.entity.FileEntity"> 2 <result column="BB10" property="fileType"></result> 3 <result column="FJ" property="blob" jdbcType="BLOB" typeHandler="org.apache.ibatis.type.BlobTypeHandler"></result> 4 </resultMap>
3.SQL语句
1 <select id="getBlob" resultMap="fileEntityResultMap"> 2 select BB10,FJ from cb10 where cb100=#{uuid} 3 </select>
blob 类型或被
org.apache.ibatis.type.BlobTypeHandler 转换成 byte[] 并赋值给实体类
2023-10-27
windows11安装SQL server数据库报错等待数据库引擎恢复句柄失败解决办法2023-10-27
SQL Server截取字符串函数操作常见方法2023-10-27
浅谈SELECT *会导致查询效率低的原因收缩数据文件通过将数据页从文件末尾移动到更靠近文件开头的未占用的空间来恢复空间,在文件末尾创建足够的空间后,可取消对文件末尾的数据页的分配并将它们返回给文件系统,本文给大家介绍SQL Server 数据库中的收缩数据...
2023-10-27