i think this is interesting. I fixed my error but it was not in my UsuarioEJb 
class!! Jboss was misleading me. The error was in other class related to 
UsuarioEJb

i had
        Column(name="idUsuario", updatable=false, insertable=false)
        
        public UsuarioEJB getUsuario(){
                return this.usuario;
        }

  and this is how i fixed the error

        @ManyToOne
        @JoinColumn(name="idUsuario", updatable=false, insertable=false)
        
        public UsuarioEJB getUsuario(){
                return this.usuario;
        }

i think jboss should have other trace for the error.

Regards!!

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4043607#4043607

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4043607
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to