Search:

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

Search: Search took 0.02 seconds.

  1. Let me rephrase the original question a little...

    Let me rephrase the original question a little bit.
    I understand you can turn off annotations by removing the one liner like '<tx:annotation-driven />'. Will that turn off @Transactional...
  2. Is there a way to disable/overwrite spring annotations without modifying source code?

    Giving @Transactional as an example, if i want to quickly modify transactional settings through an XML property without having to recompile source code, is there a way to do that?
    I basically want...
  3. Replies
    13
    Views
    1,825

    support for arrays

    Just a little note on using arrays as cache keys.
    Object[].toString() method will produce something like this:

    [Ljava.lang.Object;@10b62c9

    The last portion of this changes with every...
  4. Wow.. Thanks for the tip, saved me a few hours.

    Wow.. Thanks for the tip, saved me a few hours.
  5. Accessing properties from within a jar using PropertyPlaceholderConfigurer

    Hi

    I am having a problem accessing properties file located in a jar file when defining it through PropertyPlaceholderConfigurer.

    Here's my configuration:

    <bean id="propertyConfigurer"...
  6. Replies
    1
    Views
    618

    Nevermind, i figured it out. Above code is the...

    Nevermind, i figured it out. Above code is the right way to refer to current state Id, i had it as flowExecutionContext.activeSession.currentState.id, which is incorrect.
  7. Replies
    1
    Views
    618

    currentStateId

    I understand currentStateId was removed from FlowScope in RC1 but is there any way to extract it from another location, like flowExecutionContext? I tried the following

    <c:out...
  8. Replies
    4
    Views
    897

    Cool. Thanks for the info.

    Cool. Thanks for the info.
  9. What is the replacement of NoSuchFlowExecutionException?

    In Spring webflow 1.0 EA version it looks like NoSuchFlowExecutionException class is replaced with something else. Do you know what the replacement class is?
  10. Replies
    4
    Views
    897

    Are there any xml settings that have to be set?...

    Are there any xml settings that have to be set? Can flow xml still be within WEB-INF directory, or it has to be outside of webapp?
  11. Replies
    4
    Views
    897

    reloadable web flows

    Are hot reloadable web flows available with just released Spring Web Flow Early access version?

    Also, are there any articles on it with examples? I found 1 entry in Keith Donald's blog about it,...
  12. Replies
    1
    Views
    24,670

    How to access to session attributes in JSTL

    I try to access session attributes using JSTL and can't figure out a way.
    WHen I test browse sessionScope map, it doesn't show any values.

    This is what I do to see what's in sessionScope:

    ...
  13. Can I use OGNL in transition's 'to' attribute?

    I tried using OGNL in the following situation:

    <transition on="success" to="${requestScope.viewName}" />
    ('viewName' is an attribute i placed in requestScope manually).

    and got this:

    nested...
  14. Replies
    4
    Views
    1,813

    I have a situation where using validators the...

    I have a situation where using validators the standard way is too complex, that is why i am relying on onBindAndValidate, which gives me a convenient way to run custom validation logic and have...
  15. Replies
    4
    Views
    1,813

    Callback onBind is removed as well. This is all...

    Callback onBind is removed as well. This is all from the latest in CVS. Is there a reason for this?
  16. Replies
    4
    Views
    1,813

    onBindAndValidate in PR5

    Is onBindAndValidate no longer called by FormAction?
    I see doValidate method instead that is calling custom defined validateMethod, but is it only expecting a defined validator class or can I reuse...
  17. Replies
    3
    Views
    1,185

    You have to build spring-binding first, because...

    You have to build spring-binding first, because spring-webflows depends on it, and the classes you are missing are from spring-binding. So from spring-webflows directory go to ../spring-binding and...
  18. Can't pass a form object from parent flow to subflow

    Hi

    I want to use a subflow with parent's form object and not just the same class, but in the state that that form object is right before the subflow is entered, meaning, preserving values in all...
  19. Replies
    2
    Views
    991

    That is exactly what i did. Thanks.

    That is exactly what i did. Thanks.
  20. Replies
    2
    Views
    991

    is view name available on the JSP

    Hi all

    I use AbstractWizardFormController for my forms and I need to obtain a view name of the current view on JSP side. All my views are defined similar to following:
    ...
  21. Replies
    1
    Views
    854

    Spring session form question

    How do I access a session form "command" object through a traditional JSP scriplet? I tried session.getAttribute("command") but got an error.
Results 1 to 21 of 21