RE: [Xdoclet-devel] Hibernate, VOs and StrutsForms

2002-12-23 Thread Konstantin Priblouda
> I'm only using EntityBeans for generation of > StrutsForms, and I'm > marking it up with Hibernate tags as well to get an > ActionForm and VO. > Then I'm basically throwing it away after that. Ugly ugly... ;) > > > 1. Mark up a POJO with Hibernate and Struts > Tags. > > > 2. The POJO will be

RE: [Xdoclet-devel] Hibernate, VOs and StrutsForms

2002-12-23 Thread Konstantin Priblouda
> StrutsForms can only be generated from an EJB > (EntityBean) - that's the > dependency. That was original usage of strutsform subtask. However, nothing speaks against extending it to work with POJOs = Konstantin Priblouda ( ko5tik )Freelance Software developer < http://www.pribluda.de

RE: [Xdoclet-devel] Hibernate, VOs and StrutsForms

2002-12-23 Thread Matt Raible
> are you using an ejb task-generated VO? if so, why? are you > able to just > create a simple java class and add hibernate and struts tags? > sorry, i > don't understand the dependency on ejb VO's... > StrutsForms can only be generated from an EJB (EntityBean) - that's the dependency.

RE: [Xdoclet-devel] Hibernate, VOs and StrutsForms

2002-12-23 Thread Matt Raible
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] On Behalf > Of Matthias Bohlen > Sent: Monday, December 23, 2002 3:18 AM > To: 'tek1'; [EMAIL PROTECTED] > Subject: RE: [Xdoclet-devel] Hibernate, VOs and StrutsForms >

RE: [Xdoclet-devel] Hibernate, VOs and StrutsForms

2002-12-23 Thread Matt Raible
> -Original Message- > From: Konstantin Priblouda [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 23, 2002 2:38 AM > To: Matt Raible > Cc: xdoclet-devel > Subject: Re: [Xdoclet-devel] Hibernate, VOs and StrutsForms > > > > > 1. I have to use a

RE: [Xdoclet-devel] Hibernate, VOs and StrutsForms

2002-12-23 Thread Matthias Bohlen
e- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of tek1 > Sent: Sunday, December 22, 2002 4:29 PM > To: [EMAIL PROTECTED] > Subject: Re: [Xdoclet-devel] Hibernate, VOs and StrutsForms > > > are you using an ejb task-generated VO? if so, why? are you &g

Re: [Xdoclet-devel] Hibernate, VOs and StrutsForms

2002-12-23 Thread Konstantin Priblouda
> 1. I have to use an EntityBean in order to generate > the StrutsForm. Well, that was original intention of strutsform tags / module. Generate struts form bean for use with data object. Not more , not less... Unfortunately struts requires inheritance of ActionForm ( did required? ) - interface

Re: [Xdoclet-devel] Hibernate, VOs and StrutsForms

2002-12-22 Thread tek1
are you using an ejb task-generated VO? if so, why? are you able to just create a simple java class and add hibernate and struts tags? sorry, i don't understand the dependency on ejb VO's... what you're doing sounds pretty cool. are you doing this to try to nearly automate the process of du