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.