0

当我尝试显示存储在我的数据库中的图像时,我在 FF 控制台上收到此错误“图像损坏或截断”。我正在使用 Grails 和 Hibernate。我只想在我的 gsp 页面中显示用户的个人资料图片。

我的域类 User 有一个属性 photo 定义为 byte[]

public class User {

private String userId;
private byte[] photo;
.
.
.

user.hbm.xml 映射为:

< property name="photo" type="binary" column="PHOTO" not-null="false" />

此列是 DB 上的 BLOB。

我的普惠制:

< div id="user-view-thumbnail-container">
    <fieldset>
      <legend>Photo Upload</legend>
      <g:form action="uploadPhoto" method="post" enctype="multipart/form-data">
        <label for="photo">Photo</label>
        <input type="file" name="photo" id="photo" />
        <input type="submit" class="buttons" value="Upload" />
      </g:form>
    </fieldset>
  <g:if test="${user.photo}">
    <img alt="User Photo"  src="${createLink(controller:'profile', action:'profile_image', id:user.userId)}" />
  </g:if>
</div>

配置文件控制器:

def uploadPhoto = {       
    def user = userService.getUser(authenticateService.principal()) 
    def f = request.getFile('photo')

    user.setPhoto(f.getBytes())

    if (!user.save()) {
        //doesn´t matter now
        return;
    }

    redirect(action: 'index', model:[user: user])
}

def profile_image = {
    def user = userService.getUser(params.id)

    if (!user) {
        response.sendError(404)
        return;
    }
    response.setContentType(user.photo.contentType())//'image/png', 'image/jpeg', 'image/gif'
    response.setContentLength(user.photo.size())
    OutputStream out = response.getOutputStream();
    out.write(user.photo);
    out.close();
}

仅供参考:图片已正确保存在数据库中,我可以看到它,但我无法在我的 gsp 上显示它。

任何的想法?

非常感谢各位,

4

1 回答 1

0

在映射中使用 blob 类型:)。

于 2013-02-06T13:32:59.100 回答