Re: [appfuse-user] Get Users with a Rol

2008-01-29 Thread Allan Ang
add a Set of users to your Role object map using many-to-many then use role.getUsers() in dao and return the set -- View this message in context: http://www.nabble.com/Get-Users-with-a-Rol-tp15123957s2369p15176074.html Sent from the AppFuse - User mailing list archive at Nabble.com. -

Re: [appfuse-user] New embedded persisten object not working

2008-01-29 Thread [EMAIL PROTECTED]
Bingo! That was it. Thanks! celt wrote: > > Does your BaseObject implementation have the @MappedSuperclass annotation? > > See > http://www.hibernate.org/hib_docs/annotations/reference/en/html/entity.html#d0e898 > Inherit properties from superclasses > > -- View this message in context:

Re: [appfuse-user] New embedded persisten object not working

2008-01-29 Thread celt
Does your BaseObject implementation have the @MappedSuperclass annotation? See http://www.hibernate.org/hib_docs/annotations/reference/en/html/entity.html#d0e898 Inherit properties from superclasses -- View this message in context: http://www.nabble.com/New-embedded-persisten-object-not-work

Re: [appfuse-user] Spring MVC into the Future

2008-01-29 Thread Matt Raible
Have you tried posting this on the Spring forums? There's probably more of a community there than there is here. Matt On 1/29/08, Carlos Ortiz <[EMAIL PROTECTED]> wrote: > > Well, this is a question that I have been doing for a long time. > I like Spring MVC but I doubt if it is good for la

[appfuse-user] Spring MVC into the Future

2008-01-29 Thread Carlos Ortiz
Well, this is a question that I have been doing for a long time. I like Spring MVC but I doubt if it is good for large production sites. In this direction I am looking and asking this very same concept. Spring MVC is well designed. But I am sensing the marketplace about this fa

[appfuse-user] WYSWYG

2008-01-29 Thread Leo Barrientos C.
I need a wyswyg editor for a jsp. Any idea? Thanks in advance. -- Leo Barrientos C. Responsable de operaciones - OpenSistemas Madrid. www.opensistemas.com Madrid: 902 10 73 96 Móvil: 662319448 España. - To unsubscribe, e-mail

Re: [appfuse-user] New embedded persisten object not working

2008-01-29 Thread [EMAIL PROTECTED]
I would not think this was necessary since the Address.java is not in the hibernate.cfg.xml and AuditInfo.java is pretty similar, other than I will use a Hibernate Interceptor to actually populate it. Leo Barrientos C. wrote: > > Did you add the new class in hibernate xml file? > -- View thi

Re: [appfuse-user] New embedded persisten object not working

2008-01-29 Thread Leo Barrientos C.
Did you add the new class in hibernate xml file? [EMAIL PROTECTED] wrote: I'm trying to implement the AuditInfo pattern for Hibernate http://www.hibernate.org/48.html But its not working. It's very similar to the way that the Address object is embedded in User, but I want to embed it in BaseOb

Re: [appfuse-user] for upload file size

2008-01-29 Thread Dale Newfield
Matt Raible wrote: Which web framework are you using? For #2, there's no way to filter file types with a standard HTML control. However, there is a cool jQuery file upload widget - but I can't seem to find it right now. Since you didn't specify which framework, I'll guess struts2. If I'm wro

[appfuse-user] New embedded persisten object not working

2008-01-29 Thread [EMAIL PROTECTED]
I'm trying to implement the AuditInfo pattern for Hibernate http://www.hibernate.org/48.html But its not working. It's very similar to the way that the Address object is embedded in User, but I want to embed it in BaseObject so that all objects have these fields. I've: - annotated the AuditInfo

Re: [appfuse-user] jsperror in appfuse 1.9.4

2008-01-29 Thread Ealden Escañan
Jithesh, On Jan 29, 2008 2:51 PM, jithesh <[EMAIL PROTECTED]> wrote: > > Hi, > > I am using appfuse 1.9.4 for developing web application in wasce > 1.1. Recently i upgraded to 2.0. While accessing the application i am > getting the following error. > > ERROR [[jsp]] Servlet.service() for

Re: [appfuse-user] for upload file size

2008-01-29 Thread ujjala
I am using struts . I got that through controller tag tag of strutsconfig we can define maxfilesize. But problem is that when file size exceeded all the prorperties of form bean becomes null . so i am not able show the error message on the right page with proper manner. What is the solution for th