-->
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.  [ 2 posts ] 
Author Message
 Post subject: Mapping Problem
PostPosted: Mon Jan 07, 2008 7:04 am 
Newbie

Joined: Sun Jan 06, 2008 7:52 am
Posts: 3
Hallo Zusammen,

ich habe jetzt ein Problem, das ich seit lange die Löschung nicht gefunden habe. Könnt ihr mir vielleicht helfen?
Das Problem ist folgendes:
Ich habe zwei Klassen definiert: Eine Klasse heißt "Regal" und andere heißt "Fach", wobei ich die Relation OneToMany zwischen Regal und Fach definieren möchte. Source code sieht man unten:

Code:
@Entity
@Table(name = "rack")
public class Regal
{

  private List<ArrayList<ArrayList<Fach>>> fächer
     = new ArrayList<ArrayList<ArrayList<Fach>>>();

@OneToMany
  public  List<ArrayList<ArrayList<Fach>>> getFächer(){
        return this.fächer;
  }

  public void setFächer(List<ArrayList<ArrayList<Fach>>> fächer){
         this.fächer = fächer;
  }
}


Mit Hilfe der Datenstruktur "List<ArrayList<ArrayList<Fach>>>" wollte ich ein drei dimensionales Lager darstellen.

Code:
@Entity
@Table(name = "storagelocation")
public class Fach
{
  private String name;
 
  private double wide;

  private double height;

  hier sind dann alle getter und setter Methoden(gespart);
}


Mein Problem ist, dass die Datenstruktur List<ArrayList<ArrayList<Fach>>> wurde von Hibernat nicht anerkannt, als ich versuchte, die Tabelle zu erstellen.
Hibernate unterstüzt nur vielleicht List<Entity-Klasse>, wie ich weiss.

Weiss jemand, wie man machen kann, dass ich die Datenstruktur wie vorher behalte und die Mapping trotzdem funtioniert?

viele Grüße!
[/code]


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jan 08, 2008 1:46 pm 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Hallo,
das sieht irgendwie doppelgemoppelt aus.
List<Fach> faecher = new ArrayList<Fach>();
sollte ausreichen. List ist ein Interface und ArrayList eine der Implementierungen.

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


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

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.