Ah...good to know. Thanks!
Type: Posts; User: leojhartiv; Keyword(s):
Ah...good to know. Thanks!
I was wondering if there was any way to customize the format of the "?execution=" parameter SWF generates to track what step a user is on. My understanding is that this example parameter:
...
I'm trying to set up some conditional configuration in my context. Essentially, I want my H2 database server to only be intialized when specifically told to do so.
I have the following bean:
...
Disregard. Figured it out. Was a maven-specific classpath problem
I'm still trying to solve the problem documented here:
http://forum.springsource.org/showthread.php?t=99169
Basically, I want to be able to specify a list of fully qualified resources and/or...
I have a bean I want to create that looks like this:
<bean id="validatorFactory"
class="org.springmodules.validation.commons.DefaultValidatorFactory">
<property...
Nope....sounds good. I "like" this behavior...I just wanted to make sure I understood it correctly.
But the next sentence after your quote says:
It's the "per test fixture" part that through me off, but if this is expected behavior, that's good to know.
Thanks!
I'm just trying to get some clarification on how caching works with DependencyInjectionTestExecutionListener.
According to the reference, the application context is cached per test class and...
Hello,
I have a need to execute a service method call from a Spring MVC controller asynchronously. Attempting to avoid (in the short-term) a JMS implementation, I'm trying to use the TaskExecutor...
It looks like Keith had already logged an issue:
http://jira.springframework.org/browse/SWF-984
I added this thread as an example.
Keith, thanks for your clarification. I understand that the beans are singleton by default now.
But are they beans private to the flow?
Would a bean, "thisBean", defined in one flow's...
A follow-up question:
Assuming that the beans imported to a flow from a bean-import declaration are instantiated at flow initialization (when the flow XML is parsed and readied for handling...
Hi Keith!
My StringSetToStringConverter converts a Set<String> to String, using StringUtils.join and StringUtils.split, based on " " as a delimiter. So a Set<String> that contained:
"this"
"is"...
I believe we used to have to make a setupForm call in SWF 1.0 order to bind prior to view. Is there something similar in SWF 2.0?
dolphin, thanks for your reply!
Unfortunately, the problem isn't with loading the data. It's with telling spring to bind that data to a <form:input> tag BEFORE an initial page view.
The way...
I have a flow:
<flow xmlns="http://www.springframework.org/schema/webflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
garysweaver: thanks for your reply!
SWF tends to be a bit different of a monster, so I'm not 100% comfortable assuming that.
That said, if anyone knows for sure, that'd be great!
I've searched around the forums and looked at the reference doc, but I'm still not clear on something.
If I have a flow and I import a context file:
<bean-import resource="some-beans.xml"/>
...
Yes I did!
http://jira.springframework.org/browse/SPR-3124
Vote away and thanks for the support!
I'm hoping someone has across this one.
I am using a Maven2 directory structure for my code and have the following:
src/main/java/../SomeHibernateRepository.java ->...
Sigmund,
Thanks for your reply! I also found many people discussing this topic over at the Domain Driven Design forum:
http://tech.groups.yahoo.com/group/domaindrivendesign/
They seem to...
Hello,
I'm working on reorganizing my project. I think I've decided on the following structure:
application
web (WAR)
facade/service/api (JAR)
common-services (JAR or multiple JARs)...
To add to this, let me extend this question...
How do you unit test a Validator that delegates to another Validator?
For example, assuming Person had an Address object...
public class...
Sorry. I did perform a search, but this thread didn't come up. Guess I used the wrong keywords.
Thanks for your help!