Re: [appfuse-user] AppFuse 2.0 Status

2006-12-29 Thread Matt Raible
These are IDEA's "Live Templates" feature. http://blogs.opensymphony.com/plightbo/2006/02/idea_live_templates_more_power.html http://www.jetbrains.com/idea/docs/help/editing/livetemplates/predeftemplates.html It doesn't make sense to make them publicly available unless I added variables where ap

Re: [appfuse-user] creating object revisions

2006-12-29 Thread Matt Raible
You could use an "entityInterceptor" to detect when an entity is changed. Here's an example: org/appfuse/model/User.hbm.xml org.hibernate.dialect.PostgreSQLDialect

Re: [appfuse-user] XDoclet -- How to use stipulate list index?

2006-12-29 Thread Gary
Here's a working example: /** * @hibernate.list * name="sections" * table="SECTION" * lazy="false" * cascade="all-delete-orphan" * @hibernate.key * column="SURVEY_ID" * not-null="true" * up

Re: [appfuse-user] About filter mapping

2006-12-29 Thread Matt Raible
You should be able to do something like the following in your decorators.xml file: /forge/* /* Matt On 12/28/06, Yesh <[EMAIL PROTECTED]> wrote: Hi, We have ported an application with appfuse. We have created a seperate folder named as forge for it. Sitemesh

Re: [appfuse-user] DaoUtils Problem

2006-12-29 Thread Matt Raible
Bryan wrote the code for this and he's on vacation this week. Do you have a suggestion on how to fix this? Matt On 12/29/06, André Faria <[EMAIL PROTECTED]> wrote: The method getPersistentId in DaoUtils do not work if the annotations were int the field... @Id private int personKey;

[appfuse-user] DaoUtils Problem

2006-12-29 Thread André Faria
The method getPersistentId in DaoUtils do not work if the annotations were int the field... @Id private int personKey; - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [appfuse-user] Inability to download AppFuse

2006-12-29 Thread Hariprasad Davanagere
Thanks Matt.I have downloaded the file. Hari~Contribution is not by invitation but by initiative Hariprasad N Davanagere 19929 Sweetgum Cir, #23Germantown, MD - 20874 C - (757) 348 3647 H - (???) !!! ~ From: "Matt Raible" <

Re: [appfuse-user] Inability to download AppFuse

2006-12-29 Thread Matt Raible
You can download it from: http://static.appfuse.org/downloads/appfuse-springmvc-1.9.4-src.zip Matt On 12/29/06, Hariprasad Davanagere <[EMAIL PROTECTED]> wrote: 1.9.4 and Spring Frame Work. I can get to www.appfuse.org I am just starting with the QuickReference guide in front of me. I have

Re: [appfuse-user] Inability to download AppFuse

2006-12-29 Thread Hariprasad Davanagere
1.9.4 and Spring Frame Work. I can get to www.appfuse.org I am just starting with the QuickReference guide in front of me. I have developed applicaitons using JBOSS / STRUTS MVC / SPRING / HIBERNATE. For my new application i intend to use Spring MVC instead of STRUTS. Will it really matter if i dow

Re: [appfuse-user] Inability to download AppFuse

2006-12-29 Thread Matt Raible
Which version and web framework? If you can get to appfuse.org or raibledesigns.com, I can post it for you there. Matt On 12/29/06, Hariprasad Davanagere <[EMAIL PROTECTED]> wrote: Is there another source where i can download AppFuse from. Hari ~ Contribu

Re: [appfuse-user] Inability to download AppFuse

2006-12-29 Thread Hariprasad Davanagere
Is there another source where i can download AppFuse from. Hari~Contribution is not by invitation but by initiative Hariprasad N Davanagere 19929 Sweetgum Cir, #23Germantown, MD - 20874 C - (757) 348 3647 H - (???) !!! ~ Fr

Re: [appfuse-user] Inability to download AppFuse

2006-12-29 Thread Matt Raible
It works for me, but http://www.nabble.com doesn't. Maybe there's some internet outages? On 12/29/06, Hariprasad Davanagere <[EMAIL PROTECTED]> wrote: Hi, I am not able to download APPFUSE from appfuse.dev.java.net. Is the site down? Thanks Hari ~ Contr

[appfuse-user] Inability to download AppFuse

2006-12-29 Thread Hariprasad Davanagere
Hi, I am not able to download APPFUSE from appfuse.dev.java.net. Is the site down?ThanksHari ~Contribution is not by invitation but by initiative Hariprasad N Davanagere 19929 Sweetgum Cir, #23Germantown, MD - 20874 C - (757) 348 3647 H - (???) !!! ~

Re: [appfuse-user] How to validate...

2006-12-29 Thread Matt Raible
You might try looking at DbUnit's documentation: http://dbunit.sf.net Note that they just released version 2.2 this week - I don't know if you'll need to upgrade to get the features you want. Matt On 12/29/06, SandeepReddy <[EMAIL PROTECTED]> wrote: Hi all, I am new to appfuse and i am using

Re: [appfuse-user] XDoclet -- How to use stipulate list index?

2006-12-29 Thread Jason Brice
Is there such a tag as hibernate.list-index? I didn't see one here: http://xdoclet.sourceforge.net/xdoclet/tags/hibernate-tags.html Perhaps you want to use hibernate.collection-index ? Jason On 12/29/06, mxc <[EMAIL PROTECTED]> wrote: Hi all, I can't seem to find an appropriate xdoclet for

[appfuse-user] XDoclet -- How to use stipulate list index?

2006-12-29 Thread mxc
Hi all, I can't seem to find an appropriate xdoclet forum so I though I would ask here. I have setup a list element for a one-to-many relationship as so. /** * @hibernate.list lazy="true" outer-join="auto" inverse="true" cascade="all-delete-orphan" * @hibernate.list-in