-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Hibernate, Oracle10g Express und Image-Thumbnails
PostPosted: Thu Mar 22, 2007 1:04 pm 
Newbie

Joined: Thu Mar 22, 2007 12:25 pm
Posts: 11
Hi !

Ich habe folgendes Problem: Ich habe eine Klasse MyImage, die unter anderem ein Thumbnail des Bildes, welches die Klasse repräsentieren soll, speichert.

Ich möchte nun gerne diese MyImage-Klasse auf eine Oracle10g-DB persisitieren. Es funktioniert, wenn ich thumbnail als @Transient deklariere auch wunderbar.

Meine Frage ist nun, wie persistiere ich das Thumbnail (javax.awt.Image) innerhalb von MyImage? Ich weiss, dass auf der DB-seite dieses thumbnail als Blob-Typ aufzufassen ist.

Ohne dem @Transient bekomme ich immer die Hibernate-Exception, dass java.awt.Image kein Entity ist ......

Code:
@Entity
@Table(name="MYIMAGES")
public class MyImage implements Serializable {
  // ......

  private Image thumbnail ;

  //@org.hibernate.annotations.Type(type = "java.sql.Blob")
  @Transient
   public Object getThumbnail() {
      return thumbnail;
   }
}

public class Test {
    public static void main (String []args) {
          Session s = ..... ;
          MyImage img = .... ;
          s.getTransaction().begin();
          s.save(img) ;
          s.close();
    }
}


Weiss einer zufällig rat?
danke im voraus

edit: sry für den doppelten post ... war nicht beabsichtigt ^^

mfg Prophecy


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.