|
»
Configuring JPA with Rife
|
View:
New views
10 Messages
—
Rating Filter:
Alert me
|
|
|
Configuring JPA with RifeHi, I am new to Rife... I am trying to configure JPA for my rife project.. not sure about how to go about it. Can anyone help me out regarding the same with any sort of sample code regarding the same. Any help woyld be highly appreciated. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeHi, you can use JPA alongside RIFE as you would in any Java application. However, to benefit from the DB goodies of RIFE and the rest of the stack that's built with those in mind, you need to use RIFE's persistence library. Nothing prevents you from using both at the same time though, you can use the same datasources. HTH, Geert On 31 Mar 2009, at 07:23, Rahul wrote: > > Hi, I am new to Rife... I am trying to configure JPA for my rife > project.. not sure about how to > go about it. Can anyone help me out regarding the same with any sort > of sample code regarding > the same. > Any help woyld be highly appreciated. > > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeI am trying to configure JPA for my rife application. I have a file persistence.xml containing configuration for persistence. But i am not able to initialize this file. I am trying to add this as a new participant in my participants.xml file like this <participant param="rep/persistence.xml">ParticipantPersistence</ participant> it gives me error SEVERE: Exception starting filter RIFE com.uwyn.rife.rep.exceptions.ParticipantNotFoundException: The participant 'ParticipantPersistence' couldn't be found. Can anyone tell me how can i inject this file to my rife application. On Mar 31, 11:00 am, Geert Bevin <gbe...@...> wrote: > Hi, you can use JPA alongside RIFE as you would in any Java > application. However, to benefit from the DB goodies of RIFE and the > rest of the stack that's built with those in mind, you need to use > RIFE's persistence library. Nothing prevents you from using both at > the same time though, you can use the same datasources. > > HTH, > > Geert > > On 31 Mar 2009, at 07:23, Rahul wrote: > > > > > Hi, I am new to Rife... I am trying to configure JPA for my rife > > project.. not sure about how to > > go about it. Can anyone help me out regarding the same with any sort > > of sample code regarding > > the same. > > Any help woyld be highly appreciated. > > -- > Geert Bevin > Terracotta -http://www.terracotta.org > Uwyn "Use what you need" -http://uwyn.com > RIFE Java application framework -http://rifers.org > Flytecase Band -http://flytecase.be > Music and words -http://gbevin.com You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeDid you write your own ParticipantPersistence class? You need to use the package name also then. If you don't specify a package name, RIFE assumes it's one of the standard participants in com.uwyn.rife.rep.participants. Best regards, Geert On 31 Mar 2009, at 08:28, Rahul wrote: > > I am trying to configure JPA for my rife application. > I have a file persistence.xml containing configuration > for persistence. But i am not able to initialize this file. > I am trying to add this as a new participant in my participants.xml > file > like this > <participant param="rep/persistence.xml">ParticipantPersistence</ > participant> > > it gives me error > > SEVERE: Exception starting filter RIFE > com.uwyn.rife.rep.exceptions.ParticipantNotFoundException: The > participant 'ParticipantPersistence' couldn't be found. > > Can anyone tell me how can i inject this file to my rife application. > > On Mar 31, 11:00 am, Geert Bevin <gbe...@...> wrote: >> Hi, you can use JPA alongside RIFE as you would in any Java >> application. However, to benefit from the DB goodies of RIFE and the >> rest of the stack that's built with those in mind, you need to use >> RIFE's persistence library. Nothing prevents you from using both at >> the same time though, you can use the same datasources. >> >> HTH, >> >> Geert >> >> On 31 Mar 2009, at 07:23, Rahul wrote: >> >> >> >>> Hi, I am new to Rife... I am trying to configure JPA for my rife >>> project.. not sure about how to >>> go about it. Can anyone help me out regarding the same with any sort >>> of sample code regarding >>> the same. >>> Any help woyld be highly appreciated. >> >> -- >> Geert Bevin >> Terracotta -http://www.terracotta.org >> Uwyn "Use what you need" -http://uwyn.com >> RIFE Java application framework -http://rifers.org >> Flytecase Band -http://flytecase.be >> Music and words -http://gbevin.com > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeNo, I havnt written any class ParticipantPersistence, do I need to write it, if yes then do i need to implement the interface Participant and define those methods of that interface? On Mar 31, 11:30 am, Geert Bevin <gbe...@...> wrote: > Did you write your own ParticipantPersistence class? You need to use > the package name also then. If you don't specify a package name, RIFE > assumes it's one of the standard participants in > com.uwyn.rife.rep.participants. > > Best regards, > > Geert > > On 31 Mar 2009, at 08:28, Rahul wrote: > > > > > > > I am trying to configure JPA for my rife application. > > I have a file persistence.xml containing configuration > > for persistence. But i am not able to initialize this file. > > I am trying to add this as a new participant in my participants.xml > > file > > like this > > <participant param="rep/persistence.xml">ParticipantPersistence</ > > participant> > > > it gives me error > > > SEVERE: Exception starting filter RIFE > > com.uwyn.rife.rep.exceptions.ParticipantNotFoundException: The > > participant 'ParticipantPersistence' couldn't be found. > > > Can anyone tell me how can i inject this file to my rife application. > > > On Mar 31, 11:00 am, Geert Bevin <gbe...@...> wrote: > >> Hi, you can use JPA alongside RIFE as you would in any Java > >> application. However, to benefit from the DB goodies of RIFE and the > >> rest of the stack that's built with those in mind, you need to use > >> RIFE's persistence library. Nothing prevents you from using both at > >> the same time though, you can use the same datasources. > > >> HTH, > > >> Geert > > >> On 31 Mar 2009, at 07:23, Rahul wrote: > > >>> Hi, I am new to Rife... I am trying to configure JPA for my rife > >>> project.. not sure about how to > >>> go about it. Can anyone help me out regarding the same with any sort > >>> of sample code regarding > >>> the same. > >>> Any help woyld be highly appreciated. > > >> -- > >> Geert Bevin > >> Terracotta -http://www.terracotta.org > >> Uwyn "Use what you need" -http://uwyn.com > >> RIFE Java application framework -http://rifers.org > >> Flytecase Band -http://flytecase.be > >> Music and words -http://gbevin.com > > -- > Geert Bevin > Terracotta -http://www.terracotta.org > Uwyn "Use what you need" -http://uwyn.com > RIFE Java application framework -http://rifers.org > Flytecase Band -http://flytecase.be > Music and words -http://gbevin.com You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeYes, you can search the mailinglist if you need more information and there's some docs in the wiki about this too. Best regards, Geert On 31 Mar 2009, at 08:37, Rahul wrote: > > No, I havnt written any class ParticipantPersistence, do I need to > write it, if yes then do i need to implement the interface Participant > and > define those methods of that interface? > > > On Mar 31, 11:30 am, Geert Bevin <gbe...@...> wrote: >> Did you write your own ParticipantPersistence class? You need to use >> the package name also then. If you don't specify a package name, RIFE >> assumes it's one of the standard participants in >> com.uwyn.rife.rep.participants. >> >> Best regards, >> >> Geert >> >> On 31 Mar 2009, at 08:28, Rahul wrote: >> >> >> >> >> >>> I am trying to configure JPA for my rife application. >>> I have a file persistence.xml containing configuration >>> for persistence. But i am not able to initialize this file. >>> I am trying to add this as a new participant in my participants.xml >>> file >>> like this >>> <participant param="rep/persistence.xml">ParticipantPersistence</ >>> participant> >> >>> it gives me error >> >>> SEVERE: Exception starting filter RIFE >>> com.uwyn.rife.rep.exceptions.ParticipantNotFoundException: The >>> participant 'ParticipantPersistence' couldn't be found. >> >>> Can anyone tell me how can i inject this file to my rife >>> application. >> >>> On Mar 31, 11:00 am, Geert Bevin <gbe...@...> wrote: >>>> Hi, you can use JPA alongside RIFE as you would in any Java >>>> application. However, to benefit from the DB goodies of RIFE and >>>> the >>>> rest of the stack that's built with those in mind, you need to use >>>> RIFE's persistence library. Nothing prevents you from using both at >>>> the same time though, you can use the same datasources. >> >>>> HTH, >> >>>> Geert >> >>>> On 31 Mar 2009, at 07:23, Rahul wrote: >> >>>>> Hi, I am new to Rife... I am trying to configure JPA for my rife >>>>> project.. not sure about how to >>>>> go about it. Can anyone help me out regarding the same with any >>>>> sort >>>>> of sample code regarding >>>>> the same. >>>>> Any help woyld be highly appreciated. >> >>>> -- >>>> Geert Bevin >>>> Terracotta -http://www.terracotta.org >>>> Uwyn "Use what you need" -http://uwyn.com >>>> RIFE Java application framework -http://rifers.org >>>> Flytecase Band -http://flytecase.be >>>> Music and words -http://gbevin.com >> >> -- >> Geert Bevin >> Terracotta -http://www.terracotta.org >> Uwyn "Use what you need" -http://uwyn.com >> RIFE Java application framework -http://rifers.org >> Flytecase Band -http://flytecase.be >> Music and words -http://gbevin.com > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeIs there a way to define mapping between the tables in Rife, as we do in hibernate or JPA for that matter. In hibernate i used hbm configuration files and with JPA i used annotations to define it. How can i do it with rife? On Mar 31, 11:47 am, Geert Bevin <gbe...@...> wrote: > Yes, you can search the mailinglist if you need more information and > there's some docs in the wiki about this too. > > Best regards, > > Geert > > On 31 Mar 2009, at 08:37, Rahul wrote: > > > > > > > No, I havnt written any class ParticipantPersistence, do I need to > > write it, if yes then do i need to implement the interface Participant > > and > > define those methods of that interface? > > > On Mar 31, 11:30 am, Geert Bevin <gbe...@...> wrote: > >> Did you write your own ParticipantPersistence class? You need to use > >> the package name also then. If you don't specify a package name, RIFE > >> assumes it's one of the standard participants in > >> com.uwyn.rife.rep.participants. > > >> Best regards, > > >> Geert > > >> On 31 Mar 2009, at 08:28, Rahul wrote: > > >>> I am trying to configure JPA for my rife application. > >>> I have a file persistence.xml containing configuration > >>> for persistence. But i am not able to initialize this file. > >>> I am trying to add this as a new participant in my participants.xml > >>> file > >>> like this > >>> <participant param="rep/persistence.xml">ParticipantPersistence</ > >>> participant> > > >>> it gives me error > > >>> SEVERE: Exception starting filter RIFE > >>> com.uwyn.rife.rep.exceptions.ParticipantNotFoundException: The > >>> participant 'ParticipantPersistence' couldn't be found. > > >>> Can anyone tell me how can i inject this file to my rife > >>> application. > > >>> On Mar 31, 11:00 am, Geert Bevin <gbe...@...> wrote: > >>>> Hi, you can use JPA alongside RIFE as you would in any Java > >>>> application. However, to benefit from the DB goodies of RIFE and > >>>> the > >>>> rest of the stack that's built with those in mind, you need to use > >>>> RIFE's persistence library. Nothing prevents you from using both at > >>>> the same time though, you can use the same datasources. > > >>>> HTH, > > >>>> Geert > > >>>> On 31 Mar 2009, at 07:23, Rahul wrote: > > >>>>> Hi, I am new to Rife... I am trying to configure JPA for my rife > >>>>> project.. not sure about how to > >>>>> go about it. Can anyone help me out regarding the same with any > >>>>> sort > >>>>> of sample code regarding > >>>>> the same. > >>>>> Any help woyld be highly appreciated. > > >>>> -- > >>>> Geert Bevin > >>>> Terracotta -http://www.terracotta.org > >>>> Uwyn "Use what you need" -http://uwyn.com > >>>> RIFE Java application framework -http://rifers.org > >>>> Flytecase Band -http://flytecase.be > >>>> Music and words -http://gbevin.com > > >> -- > >> Geert Bevin > >> Terracotta -http://www.terracotta.org > >> Uwyn "Use what you need" -http://uwyn.com > >> RIFE Java application framework -http://rifers.org > >> Flytecase Band -http://flytecase.be > >> Music and words -http://gbevin.com > > -- > Geert Bevin > Terracotta -http://www.terracotta.org > Uwyn "Use what you need" -http://uwyn.com > RIFE Java application framework -http://rifers.org > Flytecase Band -http://flytecase.be > Music and words -http://gbevin.com You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeWith RIFE it's based on naming convention, the tables correspond to the names of your bean classes. On 31 Mar 2009, at 09:31, Rahul wrote: > > Is there a way to define mapping between the tables in Rife, as we do > in hibernate or JPA for that matter. > In hibernate i used hbm configuration files and with JPA i used > annotations to define it. > How can i do it with rife? > > On Mar 31, 11:47 am, Geert Bevin <gbe...@...> wrote: >> Yes, you can search the mailinglist if you need more information and >> there's some docs in the wiki about this too. >> >> Best regards, >> >> Geert >> >> On 31 Mar 2009, at 08:37, Rahul wrote: >> >> >> >> >> >>> No, I havnt written any class ParticipantPersistence, do I need to >>> write it, if yes then do i need to implement the interface >>> Participant >>> and >>> define those methods of that interface? >> >>> On Mar 31, 11:30 am, Geert Bevin <gbe...@...> wrote: >>>> Did you write your own ParticipantPersistence class? You need to >>>> use >>>> the package name also then. If you don't specify a package name, >>>> RIFE >>>> assumes it's one of the standard participants in >>>> com.uwyn.rife.rep.participants. >> >>>> Best regards, >> >>>> Geert >> >>>> On 31 Mar 2009, at 08:28, Rahul wrote: >> >>>>> I am trying to configure JPA for my rife application. >>>>> I have a file persistence.xml containing configuration >>>>> for persistence. But i am not able to initialize this file. >>>>> I am trying to add this as a new participant in my >>>>> participants.xml >>>>> file >>>>> like this >>>>> <participant param="rep/persistence.xml">ParticipantPersistence</ >>>>> participant> >> >>>>> it gives me error >> >>>>> SEVERE: Exception starting filter RIFE >>>>> com.uwyn.rife.rep.exceptions.ParticipantNotFoundException: The >>>>> participant 'ParticipantPersistence' couldn't be found. >> >>>>> Can anyone tell me how can i inject this file to my rife >>>>> application. >> >>>>> On Mar 31, 11:00 am, Geert Bevin <gbe...@...> wrote: >>>>>> Hi, you can use JPA alongside RIFE as you would in any Java >>>>>> application. However, to benefit from the DB goodies of RIFE and >>>>>> the >>>>>> rest of the stack that's built with those in mind, you need to >>>>>> use >>>>>> RIFE's persistence library. Nothing prevents you from using >>>>>> both at >>>>>> the same time though, you can use the same datasources. >> >>>>>> HTH, >> >>>>>> Geert >> >>>>>> On 31 Mar 2009, at 07:23, Rahul wrote: >> >>>>>>> Hi, I am new to Rife... I am trying to configure JPA for my rife >>>>>>> project.. not sure about how to >>>>>>> go about it. Can anyone help me out regarding the same with any >>>>>>> sort >>>>>>> of sample code regarding >>>>>>> the same. >>>>>>> Any help woyld be highly appreciated. >> >>>>>> -- >>>>>> Geert Bevin >>>>>> Terracotta -http://www.terracotta.org >>>>>> Uwyn "Use what you need" -http://uwyn.com >>>>>> RIFE Java application framework -http://rifers.org >>>>>> Flytecase Band -http://flytecase.be >>>>>> Music and words -http://gbevin.com >> >>>> -- >>>> Geert Bevin >>>> Terracotta -http://www.terracotta.org >>>> Uwyn "Use what you need" -http://uwyn.com >>>> RIFE Java application framework -http://rifers.org >>>> Flytecase Band -http://flytecase.be >>>> Music and words -http://gbevin.com >> >> -- >> Geert Bevin >> Terracotta -http://www.terracotta.org >> Uwyn "Use what you need" -http://uwyn.com >> RIFE Java application framework -http://rifers.org >> Flytecase Band -http://flytecase.be >> Music and words -http://gbevin.com > > -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeYes, thats correct. Lets say I am registering a new user(user table) to the db with corresponding role(role table). I have a realtionship table with userid and roleid as foreign keys to the user_role_mapping(user_role_mapping table) mapping table. I just want to save the user and corresponding entry should be made to the user_role_mapping table. How can I go about it. Is there any link or any sample example which i can look forward to. As i have looked into many examples but i didnt find one according to my requirement. Thanks On Mar 31, 12:36 pm, Geert Bevin <gbe...@...> wrote: > With RIFE it's based on naming convention, the tables correspond to > the names of your bean classes. > > On 31 Mar 2009, at 09:31, Rahul wrote: > > > > > > > Is there a way to define mapping between the tables in Rife, as we do > > in hibernate or JPA for that matter. > > In hibernate i used hbm configuration files and with JPA i used > > annotations to define it. > > How can i do it with rife? > > > On Mar 31, 11:47 am, Geert Bevin <gbe...@...> wrote: > >> Yes, you can search the mailinglist if you need more information and > >> there's some docs in the wiki about this too. > > >> Best regards, > > >> Geert > > >> On 31 Mar 2009, at 08:37, Rahul wrote: > > >>> No, I havnt written any class ParticipantPersistence, do I need to > >>> write it, if yes then do i need to implement the interface > >>> Participant > >>> and > >>> define those methods of that interface? > > >>> On Mar 31, 11:30 am, Geert Bevin <gbe...@...> wrote: > >>>> Did you write your own ParticipantPersistence class? You need to > >>>> use > >>>> the package name also then. If you don't specify a package name, > >>>> RIFE > >>>> assumes it's one of the standard participants in > >>>> com.uwyn.rife.rep.participants. > > >>>> Best regards, > > >>>> Geert > > >>>> On 31 Mar 2009, at 08:28, Rahul wrote: > > >>>>> I am trying to configure JPA for my rife application. > >>>>> I have a file persistence.xml containing configuration > >>>>> for persistence. But i am not able to initialize this file. > >>>>> I am trying to add this as a new participant in my > >>>>> participants.xml > >>>>> file > >>>>> like this > >>>>> <participant param="rep/persistence.xml">ParticipantPersistence</ > >>>>> participant> > > >>>>> it gives me error > > >>>>> SEVERE: Exception starting filter RIFE > >>>>> com.uwyn.rife.rep.exceptions.ParticipantNotFoundException: The > >>>>> participant 'ParticipantPersistence' couldn't be found. > > >>>>> Can anyone tell me how can i inject this file to my rife > >>>>> application. > > >>>>> On Mar 31, 11:00 am, Geert Bevin <gbe...@...> wrote: > >>>>>> Hi, you can use JPA alongside RIFE as you would in any Java > >>>>>> application. However, to benefit from the DB goodies of RIFE and > >>>>>> the > >>>>>> rest of the stack that's built with those in mind, you need to > >>>>>> use > >>>>>> RIFE's persistence library. Nothing prevents you from using > >>>>>> both at > >>>>>> the same time though, you can use the same datasources. > > >>>>>> HTH, > > >>>>>> Geert > > >>>>>> On 31 Mar 2009, at 07:23, Rahul wrote: > > >>>>>>> Hi, I am new to Rife... I am trying to configure JPA for my rife > >>>>>>> project.. not sure about how to > >>>>>>> go about it. Can anyone help me out regarding the same with any > >>>>>>> sort > >>>>>>> of sample code regarding > >>>>>>> the same. > >>>>>>> Any help woyld be highly appreciated. > > >>>>>> -- > >>>>>> Geert Bevin > >>>>>> Terracotta -http://www.terracotta.org > >>>>>> Uwyn "Use what you need" -http://uwyn.com > >>>>>> RIFE Java application framework -http://rifers.org > >>>>>> Flytecase Band -http://flytecase.be > >>>>>> Music and words -http://gbevin.com > > >>>> -- > >>>> Geert Bevin > >>>> Terracotta -http://www.terracotta.org > >>>> Uwyn "Use what you need" -http://uwyn.com > >>>> RIFE Java application framework -http://rifers.org > >>>> Flytecase Band -http://flytecase.be > >>>> Music and words -http://gbevin.com > > >> -- > >> Geert Bevin > >> Terracotta -http://www.terracotta.org > >> Uwyn "Use what you need" -http://uwyn.com > >> RIFE Java application framework -http://rifers.org > >> Flytecase Band -http://flytecase.be > >> Music and words -http://gbevin.com > > -- > Geert Bevin > Terracotta -http://www.terracotta.org > Uwyn "Use what you need" -http://uwyn.com > RIFE Java application framework -http://rifers.org > Flytecase Band -http://flytecase.be > Music and words -http://gbevin.com You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
|
|
Re: Configuring JPA with RifeI think this test could help you: http://svn.rifers.org/rife/trunk/src/unittests/com/uwyn/rife/database/querymanagers/generic/TestGenericQueryManagerManyToOne.java It uses the beans that are here: http://svn.rifers.org/rife/trunk/src/unittests/com/uwyn/rifetestmodels/ HTH, Geert On 31 Mar 2009, at 09:44, Rahul wrote: > > Yes, thats correct. Lets say I am registering a new user(user table) > to the db with corresponding role(role table). > I have a realtionship table with userid and roleid as foreign keys to > the user_role_mapping(user_role_mapping table) > mapping table. > I just want to save the user and corresponding entry should be made to > the user_role_mapping table. > > How can I go about it. > > Is there any link or any sample example which i can look forward to. > As i have looked into many examples > but i didnt find one according to my requirement. -- Geert Bevin Terracotta - http://www.terracotta.org Uwyn "Use what you need" - http://uwyn.com RIFE Java application framework - http://rifers.org Flytecase Band - http://flytecase.be Music and words - http://gbevin.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "rife-users" group. To post to this group, send email to rife-users@... To unsubscribe from this group, send email to rife-users+unsubscribe@... For more options, visit this group at http://groups.google.com/group/rife-users?hl=en -~----------~----~----~----~------~----~------~--~--- |
| Free embeddable forum powered by Nabble | Forum Help |
