Re: Using RequestFactory with JPA (3 Entities)

2013-02-11 Thread Nermin
Dear Thomas, thank you for the answer to my question. I head a JPA problem with an entity being used two times. However, I could not figure this out from the error message. I figured this out by creating the entities without using the RequestFactory. How ever it works fine now. Best regards:

Re: Using RequestFactory with JPA (3 Entities)

2013-02-09 Thread Thomas Broyer
Try to re-generate the DeobfuscatorBuilder for your RequestFactory (maybe run the ValidationTool manually). This error would generally happen if the generated DeobfuscatorBuilder doesn't know about a particular proxy. On Friday, February 8, 2013 6:11:27 PM UTC+1, Nermin wrote: Dear Community,

Using RequestFactory with JPA (3 Entities)

2013-02-08 Thread Nermin
Dear Community, I have a problem with my application which uses JPA on Datanucleus and RequestFactory, It has 3 JPA Entiries: (User) - (Address) - (City) @Entity @Table(name = T_USER_1) public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id;