-->
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.  [ 3 posts ] 
Author Message
 Post subject: Hibernate Designfrage
PostPosted: Fri Jul 25, 2008 7:46 am 
Newbie

Joined: Fri Jul 25, 2008 7:27 am
Posts: 5
Hi zusammen!
Ich hätte da eine kleine Designfrage (Hibernate 3.2 mit Oracle 9):
Zum einen habe ich eine Tabelle "User", und dann noch eine View "VUser", welche alle Spalten aus "User" und noch ein paar zusätzliche tabellenunanhängige Spalten besitzt.

Wie mache ich nun am besten das Mapping? Schön wäre es ja, wenn ich nur eine Mapping Klasse für "VUser" bräuchte. Allerdings kann man ja in eine View nicht speichern.

Gibt es nun eine elegante Möglichkeit das zu regeln oder bräuchte ich tatsächliche eine Mapping Klasse für "User" wenn ich Datenbankupdates mache, und eine Mappingklasse für "VUser" wenn ich damit arbeite und deren Inhalt zum Beispiel in meiner Oberfläche anzeigen möchte?

*grüssle*
Timo


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 28, 2008 11:52 am 
Expert
Expert

Joined: Thu Jul 05, 2007 9:38 am
Posts: 287
Das sollte funktionieren, wenn du die fraglichen Attribute als insertable=false und updatable=false mappst

Details hängen davon ab, ob du mit xml oder annotations mappst

_________________
Please rate useful posts.


Schauderhaft: Softwaredevelopment, Projectmanagement, Qualitymanagement and all things "schauderhaft"


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jul 31, 2008 7:51 am 
Newbie

Joined: Fri Jul 25, 2008 7:27 am
Posts: 5
Das habe ich mittlerweile auch probiert, allerdings bekomme ich dann folgende Fehlermeldung:
Quote:
java.sql.BatchUpdateException: ORA-01779: Kann keine Spalte, die einer Basistabelle zugeordnet wird, verändern

at oracle.jdbc.driver.DatabaseError.throwBatchUpdateException(DatabaseError.java:342)
at oracle.jdbc.driver.OraclePreparedStatement.executeBatch(OraclePreparedStatement.java:10656)
at org.hibernate.jdbc.BatchingBatcher.doExecuteBatch(BatchingBatcher.java:48)
at org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:246)
... 51 more


Mein Mapping sieht übrigens so aus:
Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
                                   "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping>
<class name="de.database.VUser" table="VUser">
  <id column="id" name="id" type="int">
   <generator class="assigned"/>
  </id>
  <property column="name" name="name" type="string"/>
  <property column="status" name="status" type="string"/>
  <property column="active" insert="false" name="active" type="int" update="false"/>
</class>
</hibernate-mapping>


*grüssle*
Timo[/quote]


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 3 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.