30/06/2009, 09:04
|
| | Fecha de Ingreso: diciembre-2007
Mensajes: 194
Antigüedad: 17 años, 1 mes Puntos: 5 | |
Respuesta: Mapear tabla Hibernate. UNA TABLA
<hibernate-mapping>
<class name="com.pruebashiber.utils.objetos.Usuario" table="users">
<id column="user_id" name="user_id" type="integer">
<generator class="native"/>
</id>
<property column="user_active" name="user_active" type="integer"/>
<property column="username" name="username" not-null="true" type="string"/>
...
</class>
</hibernate-mapping>
OTRA TABLA
<hibernate-mapping>
<class name="com.pruebashiber.utils.objetos.Objetos" table="rc_Objetos">
<id column="id" name="id" type="integer">
<generator class="native"/>
</id>
<property column="nombre" name="nombre" not-null="true" type="string"/>
<property column="fecha_creacion" name="fechaCreacion" not-null="true" type="date"/>
...
</class>
</hibernate-mapping>
TABLA CON DOS COLUMNAS RELACIONADAS 1A1 CON LAS OTRAS DOS.
<hibernate-mapping>
<class name="com.pruebashiber.utils.objetos.UsuarioObjeto s" table="rc_usuario_objetos">
<one-to-one name="idUsuario" class="com.pruebashiber.utils.objetos.Usuario"/>
<one-to-one name="idObjetos" class="com.pruebashiber.utils.objetos.Objetos"/>
<property column="n_preguntas" name="nPregunta" not-null="true" type="integer"/>
</class>
</hibernate-mapping>
¿Asi es correcto?
PD: Bueno, errores me da, asi que no sera correcto... xD
Última edición por MiLLeN; 30/06/2009 a las 09:33 |