Hi

I recently got a very boring problem. I use JSF and EJB3. A super entity bean 
A, and sub entity bean B extends A. When I submit data from JSF page to the B 
(throug a manage session bean), it works. However, when I submit data from JSF 
page to the A, I always get the "Error during model data update." errors on 
each field. I struggled several days, but I still did not get anwser(I am new 
on EJB). I sincerely appreciate any helps. Thank you in advance.

GUS

============================================
@Entity
@Table(name="a")
@Inheritance(strategy = InheritanceType.JOINED)
public class A implements Serializable {
}

@Entity
@Table(name="b")
@Inheritance(strategy = InheritanceType.JOINED)
public class B extends A { 
}



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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3922214


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to