Search:

Type: Posts; User: rainkinz; Keyword(s):

Search: Search took 0.01 seconds.

  1. Hi, I'm not sure this will help you, but is...

    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>...
  2. Hi and thank you for the responses, I think a...

    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...
  3. Getting beans from ApplicationContext when using AbstractXmlFlowExecutionTests

    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...
  4. What Version of Spring will WebFlow be compatible with

    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...
  5. Hi, I don't think the error you are seeing now...

    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...
  6. Replies
    0
    Views
    623

    When to use StatefulActionProxy?

    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...
  7. Replies
    3
    Views
    1,047

    So: ...

    So:

    br.com.vivo.credenciadas.model.business.PuUsuarioService

    is an Interface not a class correct?
  8. Replies
    15
    Views
    8,111

    Hi Ed, Answers to your questions: 1. The...

    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...
  9. Replies
    15
    Views
    8,111

    Hi, I just realized. You need to put the mvc...

    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"
    ...
  10. Replies
    15
    Views
    8,111

    Out of interest can you try using the...

    Out of interest can you try using the BeanNameAutoProxyCreator instead. ie:

    <bean id="myBeanNameProxyCreator" class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">...
  11. Replies
    15
    Views
    8,111

    I think your problem is that your proxy...

    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...
  12. Replies
    15
    Views
    8,111

    What sort of problems are you seeing? There are...

    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 ->...
  13. Replies
    13
    Views
    4,002

    Hi, I'm trying to do the same sort of thing. I...

    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...
  14. Thread:

    by rainkinz
    Replies
    1
    Views
    1,670

    In case anyone is interested I've been playing...

    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>...
  15. Thread:

    by rainkinz
    Replies
    1
    Views
    1,670

    how?

    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...
Results 1 to 15 of 15