我正在尝试将用户上传的图像存储在由 scala 编写的应用程序中并播放框架 2.2.x 我已经在 heroku 中部署了我的应用程序。Heroku 不允许我将文件保存在文件系统中。所以我试图将我的文件存储在数据库中。
这是我用于存储图像的代码:
def updateImage(id: Long, image: Array[Byte]) = {
val selected = getById(id)
DB.withConnection {
implicit c =>
SQL("update subcategory set image={image} where id = {id}").on('id -> id, 'image -> image).executeUpdate()
}
selected }
这是我用来检索图像的代码:
def getImageById(id: Long): Array[Byte] = DB.withConnection {
implicit c =>
val all = SQL("select image from subcategory where id = {id}").on('id -> id)().map {
case Row(image: Array[Byte]) => image
case Row(Some(image: Array[Byte])) => image
case Row(image: java.sql.Blob )=> image.getBytes(0 , image.length().toInt)
}
all.head
}
问题是:当我使用 H2 数据库和 blob 列时,出现“匹配错误”异常。当我使用 Postgresql 和 bytea 列时,我没有收到任何错误,但是当我检索图像时,它是十六进制格式,并且数组开头的一些字节丢失了。