-->
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.  [ 4 posts ] 
Author Message
 Post subject: Object_$$_javassist_6 returned by my dao
PostPosted: Wed Apr 28, 2010 10:30 am 
Newbie

Joined: Mon Mar 08, 2010 3:44 am
Posts: 8
Hello.

I'm trying to get a register from my database from a table and it returns an object with all it's fields null and a new field "handler" that contains a JavassistLazyInitializer and inside other field named "target" that contains all the data's from this register.

It's the first time it happends to me and I've been using Hibernate with other tables in the same database without any kind of problem.

The thing is that I can't access to the info inside of this object. Some ideas?.

I leave here my hbm just in case...
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">
<!-- Generated 16-mar-2010 13:07:20 by Hibernate Tools 3.2.4.GA -->
<hibernate-mapping>
    <class name="red.es.reporte.domain.beans.TEstructurasXml" table="T_ESTRUCTURAS_XML">
        <id name="idEstructura" type="integer">
            <column name="ID_ESTRUCTURA" precision="22" scale="0" />
            <generator class="sequence">
                <param name="sequence">T_ESTRUCTURAS_XML_SEC</param>
            </generator>
        </id>
        <property name="nombre" type="string">
            <column name="NOMBRE" length="75" not-null="true" />
        </property>
        <property name="descripcion" type="string">
            <column name="DESCRIPCION" length="250" />
        </property>
        <set name="TNodosEstructXmls" inverse="true" lazy="true" table="T_NODOS_ESTRUCT_XML" fetch="select">
            <key>
                <column name="ID_ESTRUCTURA" precision="22" scale="0" not-null="true" />
            </key>
            <one-to-many class="red.es.reporte.domain.beans.TNodosEstructXml" />
        </set>
        <set name="TListaGraficoses" inverse="true" lazy="true" table="T_LISTA_GRAFICOS" fetch="select">
            <key>
                <column name="ID_ESTRUCTURA" precision="22" scale="0" not-null="true" />
            </key>
            <one-to-many class="red.es.reporte.domain.beans.TListaGraficos" />
        </set>
    </class>
</hibernate-mapping>


And my pojo:
Code:
public class TEstructurasXml extends LightEntity implements IsSerializable, BeanModelTag {

   private static final long serialVersionUID = 1L;

   private Integer idEstructura;
   private String nombre;
   private String descripcion;
   private Set<TNodosEstructXml> TNodosEstructXmls = new HashSet<TNodosEstructXml>(0);
   private Set<TListaGraficos> TListaGraficoses = new HashSet<TListaGraficos>(0);

   public TEstructurasXml() {
   }

   public TEstructurasXml(Integer idEstructura, String nombre) {
      this.idEstructura = idEstructura;
      this.nombre = nombre;
   }

   public TEstructurasXml(Integer idEstructura, String nombre,
         String descripcion, Set<TNodosEstructXml> TNodosEstructXmls,
         Set<TListaGraficos> TListaGraficoses) {
      this.idEstructura = idEstructura;
      this.nombre = nombre;
      this.descripcion = descripcion;
      this.TNodosEstructXmls = TNodosEstructXmls;
      this.TListaGraficoses = TListaGraficoses;
   }

all the setters and getters...


Greetings.


Top
 Profile  
 
 Post subject: Re: Object_$$_javassist_6 returned by my dao
PostPosted: Mon May 03, 2010 5:20 am 
Expert
Expert

Joined: Tue Jun 16, 2009 3:36 am
Posts: 990
Quote:
Object_$$_javassist_6


This is a Hibernate Proxy object.
Please read some documentation about use of proxies in hibernate in order to get comfortable with them.

N.B.: Although it should be rarely necessary, you can also explicitly 'deproxy' Hibernate Proxy objects
with following code:

Code:
if ( myObject instanceof HibernateProxy)  {
       YourImplementationClass deproxied_obj =   ((HibernateProxy) myObject).getHibernateLazyInitializer().getImplementation();
}


Top
 Profile  
 
 Post subject: Re: Object_$$_javassist_6 returned by my dao
PostPosted: Mon May 10, 2010 12:35 pm 
Newbie

Joined: Mon Mar 08, 2010 3:44 am
Posts: 8
Thank you pb00067.

I've been trying to deproxy the Hibernate Proxy and it works perfect.
I am reading some documentation about proxies and I get lost... and reading your comment I'm feeling a little bit worried.
Is there any kind of problem I can find using this method to get my object?.

Thanks.


Top
 Profile  
 
 Post subject: Re: Object_$$_javassist_6 returned by my dao
PostPosted: Wed May 12, 2010 11:05 am 
Expert
Expert

Joined: Tue Jun 16, 2009 3:36 am
Posts: 990
Quote:
Is there any kind of problem I can find using this method to get my object?


There should be not problem with.
You only must be aware that 'deproxing' a proxy object may produce a database-hit,
so if you always and ever 'deproxy' your objects explicitly then the actual advantage of the proxy-approach (= lazy-loading of ToOne relations) gets vanished.
In such case it would maybe better to avoid proxy generation from start by declaring
regarding ToOne relations with eager fetching instead to lazy fetching.


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