Search:

Type: Posts; User: zenith.fox; Keyword(s):

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    601

    Personally, I think "evaluate expression" is a...

    Personally, I think "evaluate expression" is a better choice. It provides a lot of more flexibility. In my code, I always avoid expose real data to the flow definitions.

    The below code should...
  2. Replies
    1
    Views
    327

    SWF type safety problem?

    My expressions are listed below.


    <evaluate expression="someAction.getSomeList()" result="flowScope.someList"/>
    <evaluate expression="anotherAction.test(someList)"/>



    The signatures for...
  3. Replies
    1
    Views
    460

    have you specified the model attribute of that...

    have you specified the model attribute of that state?
  4. dojo.js in spring-js-resources 2.2.1.RELEASE has compilation error in IE

    a "'dojo' undefined " error occurs when using the dojo.js packed in spring-js-resources 2.2.1.RELEASE.

    replaced the dojo.js with dojo-release-1.5.0 downloaded from the dojo website resolves the...
  5. I didn't see any difference in the debug output.

    I didn't see any difference in the debug output.
  6. I think you didn't start flows in a right way....

    I think you didn't start flows in a right way.
    The following code looks weird.

    <input type="submit" value="Nästa" name="_eventId_next"/><a href="${flowExecutionUrl}&_eventId=next">Next</a>

    ...
  7. What is the scope of your beans? Do you use...

    What is the scope of your beans?
    Do you use default? If so, try to set the scope of your beans to session or request using the "@Scope" annotation.
  8. Replies
    2
    Views
    855

    Thanks a lot.

    Thanks a lot.
  9. Session management is introduced at...

    Session management is introduced at
    http://static.springsource.org/spring-security/site/docs/3.1.x/reference/ns-config.html#ns-session-mgmt

    Be aware preventing reuse of session can cause much...
  10. I always provide a "cancel" button on each view....

    I always provide a "cancel" button on each view. When users click the button, a "cancel" event will be fired and exit the current flow. I think this could be one solution to your issue.

    Another...
  11. I think you need to rethink your design. Why...

    I think you need to rethink your design.
    Why does a refresh indicate a restart of a flow? Personally, I don't think it makes sense.

    If you really want to restart a flow, ask users to fire a event...
  12. In spring, all beans are singleton by default....

    In spring, all beans are singleton by default.
    If you don't want a singleton bean, you need to add the @Scope annotation in the bean class.

    In terms of the prototype scope, there is a difference...
  13. Replies
    6
    Views
    852

    maybe not. not sure....

    maybe not. not sure.
    http://static.springsource.org/spring-webflow/docs/2.0-m3/reference/flow-executor.html
  14. Question about annotations in class inheritance

    I have the following code. When I run the code, I always get an NoSuchBeanDefinitionException exception on "serviceB".

    Could any expert tell me what's the problem of the code or how can I make...
  15. Replies
    2
    Views
    855

    Question about prototype scope bean

    If I inject a singleton datasource to a prototype scope bean, do I need to add a post-processor for the prototype bean to destroy/release the datasource?

    If I don't, will the datasource be hold by...
  16. Replies
    3
    Views
    1,387

    I am not quite sure about your problem But I...

    I am not quite sure about your problem
    But I think it will be helpful if you take a look at the ACID principals and transaction levels in hibernate.
    You may need to raise your level of transaction.
  17. Replies
    6
    Views
    1,278

    From my understanding of your question, you have...

    From my understanding of your question, you have three flows parent, flow1, and flow2. flow1 and flow2 inherits the parent flow. So, all the three flows have a state named "orderEntry". But you want...
  18. Replies
    6
    Views
    1,278

    if you define the view names for the three flows,...

    if you define the view names for the three flows, parent, flow1, and flow2, as "orderEntry-parent", "orderEntry-flow1", "orderEntry-flow2"

    the following flow definition should work.

    <view-state...
  19. Replies
    6
    Views
    1,278

    Yes, it's true. Tiles definition names need to be...

    Yes, it's true. Tiles definition names need to be unique and are globally accessible.
    You can use names such as "page1.definitionA", "page2.definitionA" as definition names.
  20. Not sure about the reason. But it sounds like...

    Not sure about the reason. But it sounds like that your application is terminated or session expired...
    I usually see that exception when I restart my application and try to continue with...
  21. Replies
    8
    Views
    1,623

    I am not familiar with url parameters. If you can...

    I am not familiar with url parameters. If you can put the parameters in a form, then you can get them from the attributes of currentEvent.

    Restart a flow is very similar to start a new flow. You...
  22. Replies
    1
    Views
    483

    don't understand your question.

    don't understand your question.
  23. Maybe caused by one of the following reasons: 1....

    Maybe caused by one of the following reasons:
    1. the spelling of the word
    2. the version of the webflow schema
    3. the dependency jars of webflow
  24. Replies
    3
    Views
    578

    Is there a specific reason that you need to pass...

    Is there a specific reason that you need to pass the bean this way?

    Why don't you just inject the property bean to the controller? All you need to do is adding serveral lines of code to your...
  25. Another thing to share: The spring 2.0-m3...

    Another thing to share:
    The spring 2.0-m3 reference contains much more information than the spring 2.2.x reference.

    It is kind of weird that the spring people removed lots of information from the...
Results 1 to 25 of 65
Page 1 of 3 1 2 3