-->
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: Atrribute einer POJO auf Null setzen
PostPosted: Wed May 13, 2009 8:05 am 
Newbie

Joined: Wed Apr 15, 2009 6:16 pm
Posts: 2
Hallo,

ich arbeite jetzt schon länger mit Hibernate und bin schon weit gekommen. Jetzt aber habe ich folgendes Problem:

Ich möchte von einer Pojo Agent ds Attribut AgentGruppe (n:1 Beziehung) über eine Setter-Methode Null setzen. da der Agnet in keiner Gruppe mehr sein soll.

Code:
   @ManyToOne(fetch = FetchType.LAZY, cascade=CascadeType.ALL, targetEntity = AgentGroup.class)
   @JoinColumn(name = "AGENTGROUPID", nullable = true)
   public AgentGroup getAgentgroup() {
      return this.agentgroup;
   }

   /**
    * @param agentgroup
    *            the agentgroup to set
    */
   public void setAgentgroup(AgentGroup agentgroup) {

      this.agentgroup =  agentgroup;
   }


Der Befehl setAgentgroup(null) führ leider zu keinem Ergebnis - es wird kein Update gemacht.

Was mache ich falsch?

Vielen Dank in Vorraus


Top
 Profile  
 
 Post subject: Re: Atrribute einer POJO auf Null setzen
PostPosted: Fri May 15, 2009 3:34 am 
Expert
Expert

Joined: Thu Jan 08, 2009 6:16 am
Posts: 661
Location: Germany
Etwas mehr Code wäre schon hilfreich. Nicht der Aufruf des Setters einer Entity führt zu einem DB-Update sondern das comitten der Transaktion (das flushen der Session). Wenn du also den Context posten würdest, in dem du die Entity lädst und veränderst, können wir dir helfen.

_________________
-----------------
Need advanced help? http://www.viada.eu


Top
 Profile  
 
 Post subject: Re: Atrribute einer POJO auf Null setzen
PostPosted: Fri May 15, 2009 6:31 am 
Newbie

Joined: Wed Apr 15, 2009 6:16 pm
Posts: 2
Erst einmal Danke für die Antwort.

Ich arbeite mit Spring und kapsele die Aufrufe in einem DAO, zum speichern des Ojekts rufe ich nur folgendes auf

Code:
ag.setAgentGroup(null);
saveAgent(ag);


die Zuweisung auf ein anderes Objekt klappt ohne Probleme
Zum Beispiel:

Code:
ag.setAgentgroup(agentgroup);
saveAgent(ag);


Aber der Verweis auf Null klappt nicht

Code:
   @Transactional(propagation = Propagation.REQUIRED)
   public Agent saveAgent(Agent agent) {
      if (agent.getId() != null) {
         return _entityManager.merge(agent);
      } else {
         _entityManager.persist(agent);
         return agent;
      }
   }


Ich hoffe der Codeschnipsel hilft euch weiter!


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.