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...
Type: Posts; User: boriskin; Keyword(s):
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...
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...
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...
Wow.. Thanks for the tip, saved me a few hours.
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"...
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.
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...
Cool. Thanks for the info.
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?
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?
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,...
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:
...
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...
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...
Callback onBind is removed as well. This is all from the latest in CVS. Is there a reason for this?
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...
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...
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...
That is exactly what i did. Thanks.
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:
...
How do I access a session form "command" object through a traditional JSP scriplet? I tried session.getAttribute("command") but got an error.