Re: [appfuse-user] long lost developer

2007-09-26 Thread Matt Raible
happy to implement it in templates. The hard part is finding the pattern (and seeing it work) rather than implementing it in FreeMarker. Matt > > Thanks > > Nathan > > > - Original Message - > From: "Nathan Anderson" <[EMAIL PROTECTED]> > To: users@

Re: [appfuse-user] long lost developer

2007-09-25 Thread Nathan Anderson
Is that part supposed to be done manually? If so, where would this typically go? Thanks Nathan - Original Message - From: "Nathan Anderson" <[EMAIL PROTECTED]> To: users@appfuse.dev.java.net Sent: Tuesday, September 25, 2007 11:07:27 PM (GMT-0800) America/Los_Ange

Re: [appfuse-user] long lost developer

2007-09-25 Thread Nathan Anderson
ingle/#entity-overview Thanks again, Nathan - Original Message - From: "Matt Raible" <[EMAIL PROTECTED]> To: users@appfuse.dev.java.net Sent: Tuesday, September 25, 2007 10:53:12 PM (GMT-0800) America/Los_Angeles Subject: Re: [appfuse-user] long lost developer For an embedd

Re: [appfuse-user] long lost developer

2007-09-25 Thread Matt Raible
For an embedded POJO (like Address), you need @Component on the object that embeds it: @Embedded public Address getAddress() { return address; } Then you need @Embeddable on the object that's being embedded: @Embeddable public class Address extends BaseObject implements Seria

[appfuse-user] long lost developer

2007-09-25 Thread Nathan Anderson
Hey folks, I've been away from AppFuse a while and I'm trying to reacquaint myself but I seem to be hitting some roadblocks. I have created some POJO's for my Struts 2 basic app, but I'm having a problem with running my app now that I have POJO that embeds another POJO. This is similar to Us