Ver Mensaje Individual
  #2 (permalink)  
Antiguo 01/03/2013, 10:50
gt_int
 
Fecha de Ingreso: febrero-2013
Mensajes: 50
Antigüedad: 11 años, 1 mes
Puntos: 0
Respuesta: Valor null en Struts2

Código JAVA:
Ver original
  1. [B]ProductoManager.java[/B]
  2. [HIGHLIGHT="JAVA"]package database.manager;  
  3.  
  4. import database.common.HibernateManager;  
  5. import database.entity.Producto;
  6.  
  7.  
  8. public class ProductoManager extends HibernateManager {  
  9.  
  10.    public ProductoManager(){  
  11.        TABLE = "producto";  
  12.        myClass = new Producto();  
  13.    }  
  14. }
[/HIGHLIGHT]