postgre存储bytea(blob)

Posted 小黄鸡1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgre存储bytea(blob)相关的知识,希望对你有一定的参考价值。

conrtoller

public Result<SysImageVO> uploadImg(SysImageVO sysImageVO, MultipartFile imgFile) throws IOException {
        Result<SysImageVO> result = new Result<>();
        sysImageVO.setContent(imgFile.getBytes());
        sysImageService.uploadImg(sysImageVO);
        return result;
    }


    public Result downloadImg(SysImageVO sysImageVO, HttpServletResponse response) throws IOException {
        Result result = new Result();
        // 业务处理
        SysImageVO image = sysImageService.downloadImg(sysImageVO);
        // 将content转化
        byte[] content = (byte[]) image.getContent();
        // 设置文件名
        response.addHeader("Content-Disposition", "attachment;fileName=" + URLEncoder.encode(image.getName(), "UTF-8") + ";");
        // 设置文件大小
        response.setContentLength(Integer.parseInt(image.getSize()));
        // 将图片流通过response对象返回
        BufferedOutputStream bos = new BufferedOutputStream(response.getOutputStream());
        bos.write(content);
        bos.close();
        return result;
    }

entity

private Object content; //二进制流

mapper

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.vanpeng.resource.business.modular.image.dao.SysImageDao">
        <resultMap type="xx.entity.ImageVO" id="ImageMap">
        <result property="id" column="id" jdbcType="INTEGER"/>
        <result property="name" column="name" jdbcType="VARCHAR"/>
        <result property="content" column="content" jdbcType="BLOB"/> //bytea
    </resultMap>

    <!--新增图片-->
    <insert id="uploadImg">
        insert into sys_image(id, name, content)
        values (#{id, jdbcType=INTEGER},#{name, jdbcType=VARCHAR}, #{content})
    </insert>

    <!--下载图片-->
    <select id="getImgById" resultMap="ImageMap">
        select
        id, name, content
        from sys_image
        where id = #{id}
    </select>
</mapper>

seriver不多说 对象传递即可

以上是关于postgre存储bytea(blob)的主要内容,如果未能解决你的问题,请参考以下文章

使用 TypeORM 在 Postgres bytea 上保存缓冲区仅存储 10 个字节

Postgres摘要()与字符串concat和bytea concat的行为不同?

sql 这些代码片段将演示如何逐步使用PolyBase。你应该有一个blob存储和存储秘密方便

如何在PostgreSQL中存储和检索PHP serialize()?

如何使用hibernate将图像存储到postgres数据库中

关于在 FileInputStream 上使用 PreparedStatement.setBlob 到具有 Bytea 类型的 postgres 数据库的问题