Hi
I am looking at using Spring 2.0 and Hibernate Annotations on my current project (I have last used Spring 1.2.8 with Hibernate 3.1 and XDoclet1, and could not use JDK5.0 constructs in my...
Type: Posts; User: chriskrn1; Keyword(s):
Hi
I am looking at using Spring 2.0 and Hibernate Annotations on my current project (I have last used Spring 1.2.8 with Hibernate 3.1 and XDoclet1, and could not use JDK5.0 constructs in my...
Hi Keith
I think I did have redirect on. On org.springframework.webflow.executor.FlowExecutorImpl, I had the property redirectOnPause="FLOW_EXECUTION"
I removed this, and it appears to have...
Hi
I have the ff method in my Spring Web Flow action:
public Event someMethod(RequestContext context) {
context.getRequestScope().put("testMessage1", "Message - request.");
...
Thanks for all the replies, but I still appear to have a problem getting this to work.
Just for the record, I am using Webflow RC2.
My understanding of the EL in a JSP is that:
...
Hi
I have the ff code in my action:
requestContext.getRequestScope().put("informationMessage", "some information message")
I then try to access the request parameter from my jsp as follows...
Is there any way of simulating the transactional behaviour (eg. of automatic rollback) that is available in AbstractTransactionalSpringContextTests in AbtsractXmlFlowExecutionTests ?
Hi Keith
I have changed the "error" transition as u have suggested as follows:
<flow start-state="setupForm.state">
<action-state id="setupForm.state">
<action...
Hi Yatesco
My jsp is already exactly as you say. The relevant part of the jsp is as follows:
<spring:bind path="formObject.testDate">
<tr>
<td>Test Date:</td>
...
I have seen previous posts regarding problems with custom PropertyEditors, but unfortunately, they do not appear to give clear solutions.
I am using Webflow RC1 with Spring 1.2.8.
I have a...
Thanks Carlos
I did see this in the code. I thought, perhaps, that Spring provided a Class that enabled one to access the view model more logically.
In any event, I will do as u suggest.
...
I am writing some tests in Webflow, and I am trying to access the "errors" object in one of my tests. How do I do this?
I have the following line of code in my test:
ApplicationView view =...