RE: struts with spring

2007-08-14 Thread Corro Fuentes, Gerardo
Any if these: http://www.docjar.com/s.jsp?q=org%2Fjboss%2Futil%2Ffile%2FArchiveBrowser &t=q -Mensaje original- De: Musachy Barroso [mailto:[EMAIL PROTECTED] Enviado el: martes, 14 de agosto de 2007 16:34 Para: Struts Users Mailing List Asunto: Re: struts with spring missing depend

Re: struts with spring

2007-08-14 Thread Musachy Barroso
oss/util/file/ArchiveBrowser$Filter > Caused by: org.springframework.beans.factory.BeanCreationException: Error > creating bean with name 'entityManagerFactory' defined in ServletContext > resource [/WEB-INF/applicationContext.xml]: Invocation of init method > failed; nested exception is

struts with spring

2007-08-14 Thread sandyg
beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: org/jboss/util/file/ArchiveBrowser$Filter C

Re: Re: Extending Struts with Spring

2006-06-09 Thread Dakota Jack
I cannot tell if this is a question or a statement. Do you want to know how to use AOP or are you saying you don't think that would be a good idea? On 6/9/06, starki78 <[EMAIL PROTECTED]> wrote: Ciao! Do you have experience with AOP and specially using a Interceptor for metrics? I really can

Re: Re: Extending Struts with Spring

2006-06-09 Thread starki78
Ciao! Do you have experience with AOP and specially using a Interceptor for metrics? I really cannot imagine how to implement a solution for an application! Do you mean like in a filter implement code for time-stopping or similar? Nice greetings Starki > Don't forget about the AOP aspect (no

Re: Re: Extending Struts with Spring

2006-06-08 Thread Dakota Jack
Don't forget about the AOP aspect (no pun intended) of Spring. While the IoC is handy, it is nothing, in my opinion, in comparison to the solution regarding logging, security, metrics, etc. in Spring with AOP. On 6/8/06, Julian Tillmann <[EMAIL PROTECTED]> wrote: Thanks very much for all your

Re: Re: Extending Struts with Spring

2006-06-08 Thread Julian Tillmann
Thanks very much for all your answers, I'd be very keen to learn more about this soon. -- Echte DSL-Flatrate dauerhaft für 0,- Euro*! "Feel free" mit GMX DSL! http://www.gmx.net/de/go/dsl - To unsubscribe, e-mail: [EMAIL PR

Re: Extending Struts with Spring

2006-06-08 Thread Phil Zoio
I've added a lot of support for integrating Spring with Struts in Strecks: http://strecks.sourceforge.net/ - a Java 5-based Struts extension framework The main Spring-related things you'll find in there are: - you can inject any Spring bean into your actions using the @InjectSpringBean annotat

Re: Extending Struts with Spring

2006-06-08 Thread Dave Newton
Joe Germuska wrote: > At 9:14 AM +0200 6/8/06, Julian Tillmann wrote: >> - But the spring Context offers some new possibilites >> like IOC but to be honest I'm not expert enough >> to understand this up to date! > > This is the Spring feature that I appreciate the most. Before we > started usi

Re: Re: Extending Struts with Spring

2006-06-08 Thread Joe Germuska
At 9:14 AM +0200 6/8/06, Julian Tillmann wrote: Thank you for your replies! When I understand this right: - Giving Actions a state using Spring makes no sence Not so much "makes no sense" as "doesn't get you anything." At least, once you are used to writing threadsafe actions, you don't see

Re: Re: Extending Struts with Spring

2006-06-08 Thread Julian Tillmann
Thank you for your replies! When I understand this right: - Giving Actions a state using Spring makes no sence - It cannot be recommended to overwrite the request processor with Spring (we already have our own) - But the spring Context offers some new possibilites like IOC but to be honest I'

Re: Extending Struts with Spring

2006-06-07 Thread Dave Newton
Julian Tillmann wrote: > I've read that you can use Spring to make your Struts Actions thread safe. Is > someone using this or has experience with it? > Just out of curiosity, why do you want to do this? Dave - To unsubsc

Re: Extending Struts with Spring

2006-06-07 Thread Joe Germuska
At 2:05 PM +0200 6/7/06, Julian Tillmann wrote: Hello, I've read that you can use Spring to make your Struts Actions thread safe. Is someone using this or has experience with it? Wendy gave you the right pointer. Note that the Spring custom RequestProcessor which is part of the strategy poi

Re: Extending Struts with Spring

2006-06-07 Thread Wendy Smoak
On 6/7/06, Julian Tillmann <[EMAIL PROTECTED]> wrote: I've read that you can use Spring to make your Struts Actions thread safe. Is someone using this or has experience with it? It's covered in this article: http://www-128.ibm.com/developerworks/java/library/j-sr2.html "Once you have your

Extending Struts with Spring

2006-06-07 Thread Julian Tillmann
Hello, I've read that you can use Spring to make your Struts Actions thread safe. Is someone using this or has experience with it? Are there other arguments for using Spring with Struts like, for example an easy implemented Interceptor that might improve the application and is not as easily a

Re: Struts with spring 1.2

2005-06-02 Thread Laurie Harper
Joe Germuska wrote: Note that it's also possible to override the "determineBeanName" method in DelegatingActionProxy so that you could use some different logic -- for example, use the "parameter" property of the ActionMapping to specify a single Spring bean name instead of dealing with the vola

Re: Struts with spring 1.2

2005-06-02 Thread Joe Germuska
At 8:41 AM +0200 6/2/05, Anders Sveen wrote: Hi Rodolfo, We are using Spring 1.2 with Struts 1.2.6 . At least with our setup, we found that if we wanted to use Dependency Injection with Spring into our actions, we would not be able to use our wildcard mappings. So instead we just let our actions

Re: Struts with spring 1.2

2005-06-01 Thread Anders Sveen
Hi Rodolfo, We are using Spring 1.2 with Struts 1.2.6 . At least with our setup, we found that if we wanted to use Dependency Injection with Spring into our actions, we would not be able to use our wildcard mappings. So instead we just let our actions inherit from DispatchActionSupport, get the Ap

Struts with spring 1.2

2005-06-01 Thread Rodolfo García Esteban/CYII
Hi, I´m testing spring framework and it uses struts 1.1, is it posible upgrade to struts 1.2.7 changing struts.jar, what new posibilities of struts 1.2.7 will not be possible to use? Thanks Rodolfo