Hi,
I'm not sure this will help you, but is there any reason why you have both ContextLoaderListener _and_ ContextLoaderServlet configured?
<servlet>
<servlet-name>context</servlet-name>...
Type: Posts; User: rainkinz; Keyword(s):
Hi,
I'm not sure this will help you, but is there any reason why you have both ContextLoaderListener _and_ ContextLoaderServlet configured?
<servlet>
<servlet-name>context</servlet-name>...
Hi and thank you for the responses,
I think a Spring 1.2.7 dependency for WebFlow is fine. I think the problem I, and possibly others are having is that we can't get our clients to upgrade Spring...
Hi,
I am writing some tests for my webflows and wanted to know what the best approach to getting a bean from a 'regular' applicationContext. My use case here is that I have the flow with an action...
Hi,
I am working a system that will probably go into production using WebFlow. It's been working out very well for us (thanks for all the hard work), however I just upgraded to 1.0-ea and now get...
Hi,
I don't think the error you are seeing now has anything to do with your checkbox use (which looks right to me). I have a few questions for you:
1. Are you extending FormAction or is this...
Hi,
I was taking a look at some of the example apps and noticed the use of the StatefulActionProxy to proxy the MasterMindGame (which extends MultiAction). This is interesting in that within your...
So:
br.com.vivo.credenciadas.model.business.PuUsuarioService
is an Interface not a class correct?
Hi Ed,
Answers to your questions:
1. The reason you have to add the mvc package to your pointcut is because in AbstractRegexpMethodPointcut the method public final boolean matches(Method...
Hi,
I just realized. You need to put the mvc package in your regex pointcuts to get the Controller methods to be proxied:
<bean id="beforeLoggingAdvisor"
...
Out of interest can you try using the BeanNameAutoProxyCreator instead. ie:
<bean id="myBeanNameProxyCreator" class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">...
I think your problem is that your proxy definitions are not in your spring dispatcher definitions and therefore not in the same bean factory as your controllers. Try putting the config for the...
What sort of problems are you seeing? There are some problems with proxying controllers using cglib because of final methods. Rob Harrop has a great explanation of this ->...
Hi,
I'm trying to do the same sort of thing. I understand that the final methods in the SimpleFormController (in my case) don't get proxied and that's why dependency injection is failing. Has...
In case anyone is interested I've been playing with Tiles as an alternative (which I last used well over a year ago) and it work beautifully.
This is my setup in my web.xml:
<servlet>...
Hi,
I'm trying to import a page fragment in a jsp page that is under WEB-INF/jsp using <c:import url="/somepath/myjspfragment.jspf">. I configured a controller for my application and a default...