Search:

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

Page 1 of 20 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    2
    Views
    934

    Spring Shell 1.0.0 does not have a direct way to...

    Spring Shell 1.0.0 does not have a direct way to disable the built-in commands.
    However, what you could do is setup your own launcher iso using the org.springframework.shell.Bootstrap one that comes...
  2. Replies
    1
    Views
    597

    I'm guessing this is Spring Roo related rather...

    I'm guessing this is Spring Roo related rather than Spring Shell related.
    Try posting in the Spring Roo forum.

    Erwin
  3. Thread: Password prompt?

    by klr8
    Replies
    1
    Views
    863

    You can do that by directly using the JLine...

    You can do that by directly using the JLine ConsoleReader:


    ConsoleReader cr = new ConsoleReader();
    String pwd = cr.readLine('*');


    Erwin
  4. Replies
    5
    Views
    1,658

    Hello Kresimir, I don't think there is a...

    Hello Kresimir,

    I don't think there is a mailing list, but you could discuss things on this forum or otherwise in the context of a specific JIRA ticket.
    Also make sure you check the contribution...
  5. Replies
    2
    Views
    863

    Spring Shell intro

    For those interested, I've put together a quick "Getting started with Spring Shell" blog post:

    http://ev9d9.blogspot.be/2012/11/getting-started-with-spring-shell.html


    Erwin
  6. Replies
    2
    Views
    735

    Hey Matt, Could you try to debug this and put...

    Hey Matt,

    Could you try to debug this and put a breakpoint in the FlowExecutorBeanDefinitionParser.doParse() (part of the SWF source code).
    That should tell more about whether or not your config...
  7. Replies
    7
    Views
    9,424

    This release doesn't seem to be a drop-in...

    This release doesn't seem to be a drop-in replacement for 2.0.1-RELEASE: there is a new (completely undocumented) "afterCompletion" method in the EndpointInterceptor interface??
    Was this...
  8. Replies
    4
    Views
    2,235

    Spring AMQP Transaction Management

    Hello,

    I'm looking for some information on Spring AMQP and transaction management.
    Does Spring AMQP allow things like messaging transactions that get coordinated by an application server...
  9. Replies
    23
    Views
    7,746

    Cool to see that SWF is on its way again! What...

    Cool to see that SWF is on its way again!

    What kind of backwards compatibility situation are you striving for with SWF3? Should this end up being a drop in replacement for SWF2?

    Erwin
  10. I saw your earlier post but haven't been able to...

    I saw your earlier post but haven't been able to investigate yet -- it's still on my TODO list :).

    But indeed, SWF 1.x sees the RequestContext as an internal artifact and doesn't expose it to...
  11. Good point. Probably worth a feature request:...

    Good point. Probably worth a feature request:
    http://jira.springframework.org/browse/SWF

    Erwin
  12. SWF 2 exposes the RequestContext as...

    SWF 2 exposes the RequestContext as 'requestContext' to the views.

    Erwin
  13. Replies
    2
    Views
    2,348

    Interesting, but I don't really have any idea...

    Interesting, but I don't really have any idea why it's not working. I take it you're reattaching the detached object to the Hibernate session when calling back into the transactional service layer?...
  14. Replies
    5
    Views
    1,103

    Mmm, setupForm should detect that the form...

    Mmm, setupForm should detect that the form backing object and Errors instance are already there and should leave them alone.
    Could you try to debug FormAction and see what's going on? Just put a...
  15. Replies
    2
    Views
    985

    What's probably a better approach is to move the...

    What's probably a better approach is to move the flow to an end-state once the delete has happened, effectively completing the 'delete' process the user was involved in. If you do that SWF prevent...
  16. Take a look at this tip for some insights:...

    Take a look at this tip for some insights:
    http://www.ervacon.com/products/swf/tips/tip2.html

    Erwin
  17. Replies
    5
    Views
    3,668

    I've created a JIRA issue to track this:...

    I've created a JIRA issue to track this:
    http://jira.springframework.org/browse/SWF-511

    Erwin
  18. Replies
    5
    Views
    3,668

    Mmm, I take it you have an "error" view state...

    Mmm,

    I take it you have an "error" view state in your flow?
    Also, could you check that your exception is serializable?

    This could potentially be a but in SWF so I'd like to get to the bottom...
  19. Replies
    1
    Views
    2,155

    You're probably updating the value in one...

    You're probably updating the value in one continuation snapshot while retrieving it from another continuation snapshot.

    Here's a few interesting tips related to this:...
  20. One way is to get it from the request parameters,...

    One way is to get it from the request parameters, which are available from the RequestContext:

    requestContext.getRequestParameters().get("_flowExecutionKey")

    Erwin
  21. What do you mean by 'fails'? Does it generate an...

    What do you mean by 'fails'? Does it generate an exception? If so, could you post the exception?

    Erwin
  22. Thread: dynamic view name

    by klr8
    Replies
    1
    Views
    1,219

    OGNL expressions are supported in the view name,...

    OGNL expressions are supported in the view name, so you could do something like this:

    <view-state view="${flowScope.foo='bar' ? 'x.jsp' : 'y.jsp'}"/>

    The expression is evaluated against the...
  23. Replies
    3
    Views
    4,202

    I would say: using normal SWF techniques (e.g....

    I would say: using normal SWF techniques (e.g. events and transitions).

    Regarding your questions:
    1. You've got lots of options here: roll your own, something like Spring Layout, ...
    2. The only...
  24. Replies
    6
    Views
    1,100

    Seems like you are missing some jars in the...

    Seems like you are missing some jars in the classpath (WEB-INF/lib) and as a result the webapplication is not starting up (hence the 404).

    Check the reference documentation for more info about how...
  25. Good point. It's probably a good idea to...

    Good point.

    It's probably a good idea to report this as an issue in the SWF JIRA:
    http://jira.springframework.org/browse/SWF

    Meanwhile, try this:
    <evaluate-action expression="flowScope.person...
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4