Search:

Type: Posts; User: Phil Webb; Keyword(s):

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    389

    Sticky: Spring Framework 3.2.2 Released

    The second maintenance release in the Spring 3.2.x line is now available via Maven Central, the SpringSource repository, or for direct download from our community download page. This release includes...
  2. Replies
    16
    Views
    1,726

    I have raised a new JIRA issue for this [1]....

    I have raised a new JIRA issue for this [1]. Could you please update the JIRA with a full stack trace? You might also want to watch the issue for updates.

    Cheers.
    Phil.

    [1]...
  3. Replies
    1
    Views
    358

    Hi Tumaini, I am not aware of any projects...

    Hi Tumaini,

    I am not aware of any projects that mix Web Flow and WaveMaker. The two applications have quite different goals and would probably be hard to combine in a single application. WaveMaker...
  4. Replies
    6
    Views
    1,181

    Take a look at...

    Take a look at https://github.com/philwebb/springfaces/ it might provide the type of integration that you are looking for.
  5. In my opinion JSF took a major leap forward with...

    In my opinion JSF took a major leap forward with version 2.0 and contrary to Grzegorz I have found may tasks easier to achieve by using pre-built JSF components. I would recommend taking a look at...
  6. Replies
    2
    Views
    2,024

    This project has now moved to here:...

    This project has now moved to here:
    https://github.com/springtestdbunit

    Version 1.0.0 should be released to Maven central in the next few days.
  7. Replies
    2
    Views
    649

    I have added some comments to the bug report.

    I have added some comments to the bug report.
  8. You might be able to use the...

    You might be able to use the FlowExecutionListener interface to do this. You could implement a sessionStarting method that looks to see if the flowSession has a parent flow and throw an exception if...
  9. I recently blogged about a custom component to...

    I recently blogged about a custom component to work with Spring MessageSource beans:...
  10. Replies
    3
    Views
    7,613

    You could take a look at the source code for the...

    You could take a look at the source code for the webflow reference application. The later version uses PrimeFaces components:
    ...
  11. You might want to look into JSR 303 and the...

    You might want to look into JSR 303 and the Hibernate Validator project, I think it plays pretty well with JSF and WebFlow these days.
  12. The ...

    The
    org.springframework.webflow.execution.RequestContextHolder class may help (make sure you use the one in the webflow package, not the MVC class with the same name)



    MutableAttributeMap...
  13. Replies
    4
    Views
    1,388

    I think that the source forge repository is no...

    I think that the source forge repository is no longer maintained.

    Try:
    https://src.springframework.org/svn/spring-webflow/tags/spring-webflow-2.0.3.RELEASE/

    Phil.
  14. Replies
    5
    Views
    2,069

    You may be able to redirect manually without...

    You may be able to redirect manually without using an end state



    <view-state id="reviewCart">
    <transition on="pay">
    <evaluate expression="payAction" />
    </transition>...
  15. Take a look at FlowExecutionListener, you may be...

    Take a look at FlowExecutionListener, you may be able to use the viewRendering and viewRendered methods to track how long it takes to load a view and to record the viewState that is being rendered.
    ...
  16. Replies
    4
    Views
    2,113

    Try leaving the end-state in the subflow without...

    Try leaving the end-state in the subflow without the redirect and instead do the redirect in the calling flow

    SubFlow:


    <end-state id="dossierrecapbeneficiaire"/>


    Calling Flow:
  17. Replies
    2
    Views
    804

    I don't think there is an easy way to extend the...

    I don't think there is an easy way to extend the webflow schema. You can however use an action state and call an expression:



    <action-state id="flowRouter">
    <evaluate...
  18. Replies
    3
    Views
    770

    For WebFlow 2.0 you can set a limit to the number...

    For WebFlow 2.0 you can set a limit to the number of active conversation using the max-executions attribute on flow-execution-repository...
  19. Replies
    1
    Views
    426

    Can you use the on-exception attribute on the...

    Can you use the on-exception attribute on the transition?



    ....
    public Event someAction(RequestContext context) throws SomeExceptionObjectFromServiceLayer {
    ...
    }
    ...
  20. Replies
    1
    Views
    452

    Try casting the viewState to TransitionableState...

    Try casting the viewState to TransitionableState to see if you can access the transition definitions. Also you could consider using an attribute on the transition rather than a suffix:


    ...
  21. Take a look at the FlowUrlHandler interface.

    Take a look at the FlowUrlHandler interface.
  22. Replies
    2
    Views
    547

    I believe that snapshots are taken on state exit....

    I believe that snapshots are taken on state exit.

    ViewState.exit
    -> ViewState.updateHistory
    -> RequestControlContext.updateCurrentFlowExecutionSnapshot
    ->...
  23. Replies
    1
    Views
    670

    You need to register the handler as a spring bean...

    You need to register the handler as a spring bean then make reference to it from your flow XML using the "exception-handler" element.



    <flow>
    ...
    <exception-handler...
  24. currentUser is a special EL variable that gives...

    currentUser is a special EL variable that gives access to the currently authenticated Principal.
    ...
  25. I think that you can use requestParameters for...

    I think that you can use requestParameters for this purpose

    See section 3.5 of the reference docs
    ...
Results 1 to 25 of 53
Page 1 of 3 1 2 3