active questions tagged webflow - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T19:50:07Zhttp://stackoverflow.com/feeds/tag/webflowhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1890287/asp-net-spring-web-flow-how-do-i-get-up-to-speed-fast0ASP.NET => Spring Web Flow: How do I get up to speed fast?roufamatic2009-12-11T19:20:00Z2009-12-14T15:54:33Z
<p>I'm a long-time web developer who's been focusing on ASP.NET/C# for the past 5 years. For my final Masters in Software Engineering project, my team is working with a local company to build them an app using Spring Web Flow (as that's their current tech stack).</p>
<p>I don't know the first thing about building web sites with Java. In fact the last Java dev I did was in the mid-90's when I wrote a calculator applet (back when everyone thought applets would take over the world :-). I know there are things called Servlets, and servlet containers, but I've lived in blissful ignorance about them until now. On the other hand I consider myself a web application expert (not just from ASP.NET, but from classic ASP and Perl before that) and have some experience with the ASP.NET MVC framework as well as Ruby on Rails so I expect to see some similarities with the MVC implementation. But after looking at the myriad xml configuration files last night I had to dig up my old baby blankie and suck my thumb for a bit.</p>
<p>So, Java masters... how would you go about getting a competent developer from a different tech background up to speed on the world of Java web development? What sites have the best tutorials? What books can help? Keep in mind that I have one month before we start our first code sprint, but there should be time for me to do some good late night reading.</p>
http://stackoverflow.com/questions/1715214/spring-webflow-validation0Spring webflow validationRichard2009-11-11T13:39:31Z2009-12-14T01:00:01Z
<p>Hi, complete and utter newbie on spring webflow (and indeed, spring mvc).
30 minutes in... got the first page of my flow appearing, which happens to be a captcha, an input field and a submit button.</p>
<p>The actual captcha value is stored in session and i need to validate that the input field values matches the value in session.</p>
<p>In order to do validation, my model is passed a 'ValidationContext'.</p>
<p>Question: i can't seem to access session data from the ValidationContext. How do i do this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/288219/how-do-i-redirect-to-an-ftp-url-with-spring-webflow0How do I redirect to an ftp:// url with Spring Webflow?bwinton2008-11-13T20:44:34Z2009-12-11T21:06:40Z
<p>I'm trying to use Spring WebFlow to redirect to a computed url to an ftp server, but in the ExternalRedirect code are the following lines:</p>
<pre><code>} else if (location.startsWith("http://") || location.startsWith("https://")) {
sendRedirect(location, request, response);
} else {
sendServletRelativeRedirect(location, request, response);
}
</code></pre>
<p>Is there any way to get Spring WebFlow to redirect to, say, ftp://example.com/?</p>
http://stackoverflow.com/questions/1862356/is-there-an-easy-way-to-validate-that-a-spring-webflow-1-0-x-has-proper-outputs0Is there an easy way to validate that a Spring Webflow (1.0.x) has proper outputs in an attribute mapper that occurs in an end state from within an integration test?MetroidFan20022009-12-07T19:35:10Z2009-12-07T19:35:10Z
<p>I have several integration tests that test the execution of flows for subflows. However, I would like to be able to examine the mapped output attributes of the subflow when it ends. Is there an easy way to do this for Webflow (1.0.x)?</p>
<p>For the record, my tests are a custom extension of AbstractXmlFlowExecutionTests, so pretty much anything that can do, my tests can do.</p>
http://stackoverflow.com/questions/1593020/faces-conversion-service-is-not-found-for-converting-datamodel0Faces conversion service is not found for converting 'dataModel'Gaetan2009-10-20T07:41:20Z2009-11-27T12:44:15Z
<p>While creating my first swf application with JSF integration, I get the following error : Unable to load class 'dataModel' when parsing my flow definition on the first request.</p>
<p>It appears that the FacesConversionService (the class that understands the 'dataModel' alias) is not invoked while trying to find a class for that alias, although my webflow application context contains the <code><faces:flow-builder-services/></code> tag in it.</p>
<p>Doing some debug while trying to find out the cause, I noticed the following:</p>
<ol>
<li>the xml file containing <code><faces:flow-builder-services/></code> is loaded by the context loader listener, and the facesConversionService bean is registered</li>
<li>the flow handler mapping and adapter are correctly invoked and the request is forwarded to the expected flow, which definition is created on the fly.</li>
<li>while creating internal infrastructure objects for the flow, swf creates a web application context on top of the app context loaded by the listener. This new wac contains the definitions for the swf scopes, etc, and has the listener's application context from above as parent.</li>
<li>the flow definition file for my flow is found and parsed, and when it tries to find the class for the result type of an evaluate element, the conversion service does not know about the 'dataModel' alias.</li>
</ol>
<p>Actually, the funny thing on the last point is that the conversion service is either looked up as a local bean in the application context created on point 3. above, or -if not found- looked up in the parent flow builder context.</p>
<p>The faces conversion service is neither a local bean of the context (it is registered in the parent context of the flow context), nor is it registered as the conversion service of the flow builder context (at least the FlowBuilderContextImpl that is created by the <code><flow:flow-registry/></code> element).</p>
<p>Does anybody know what went wrong ?</p>
<p>I don't think it's related to the application server, but just in case, I'm running on websphere 6.1.0.23, with spring 2.5.6 and webflow 2.0.8.RELEASE.</p>
<p>Here are my configuration files:</p>
<p>web.xml:</p>
<pre><code><listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext-*.xml</param-value>
</context-param>
...
<servlet>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value></param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<url-pattern>/swf/*</url-pattern>
</servlet-mapping>
</code></pre>
<p>Beans definitions for the MVC part (/WEB-INF/applicationContext-webmvc.xml):</p>
<pre><code><bean class="org.springframework.webflow.mvc.servlet.FlowHandlerMapping">
<property name="flowRegistry" ref="flowRegistry" />
<property name="defaultHandler">
<bean class="org.springframework.web.servlet.mvc.UrlFilenameViewController" />
</property>
</bean>
<bean class="org.springframework.webflow.mvc.servlet.FlowHandlerAdapter">
<property name="flowExecutor" ref="flowExecutor" />
</bean>
<bean id="faceletsViewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.faces.mvc.JsfView" />
<property name="prefix" value="/WEB-INF/" />
<property name="suffix" value=".jspx" />
</bean>
<bean class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />
</code></pre>
<p>Beans definitions for the swf part (/WEB-INF/applicationContext-webflow.xml):</p>
<pre><code><flow:flow-registry id="flowRegistry" base-path="/WEB-INF/flows">
<flow:flow-location path="/navigation/navigation.xml"/>
<flow:flow-location path="/edition/edition.xml"/>
</flow:flow-registry>
<flow:flow-executor id="flowExecutor">
<flow:flow-execution-listeners>
<flow:listener ref="jpaFlowExecutionListener" criteria="edition"/>
</flow:flow-execution-listeners>
</flow:flow-executor>
<faces:flow-builder-services id="facesFlowBuilderServices" development="true"/>
<bean id="jpaFlowExecutionListener"
class="org.springframework...JpaFlowExecutionListener">
<constructor-arg ref="entityManagerFactory" />
<constructor-arg ref="transactionManager" />
</bean>
</code></pre>
<p>The stack trace for the exception:</p>
<pre><code>[Servlet Error]-[Spring MVC Dispatcher Servlet]: java.lang.IllegalArgumentException: Unable to load class 'dataModel'
at org.springframework.webflow.engine.builder.model.FlowModelFlowBuilder.toClass(FlowModelFlowBuilder.java:965)
at org.springframework.webflow.engine.builder.model.FlowModelFlowBuilder.parseEvaluationActionResultExposer(FlowModelFlowBuilder.java:867)
at org.springframework.webflow.engine.builder.model.FlowModelFlowBuilder.parseEvaluateAction(FlowModelFlowBuilder.java:858)
at org.springframework.webflow.engine.builder.model.FlowModelFlowBuilder.parseActions(FlowModelFlowBuilder.java:834)
at org.springframework.webflow.engine.builder.model.FlowModelFlowBuilder.parseAndAddViewState(FlowModelFlowBuilder.java:547)
at org.springframework.webflow.engine.builder.model.FlowModelFlowBuilder.buildStates(FlowModelFlowBuilder.java:207)
at org.springframework.webflow.engine.builder.FlowAssembler.directAssembly(FlowAssembler.java:106)
at org.springframework.webflow.engine.builder.FlowAssembler.assembleFlow(FlowAssembler.java:91)
at org.springframework.webflow.engine.builder.DefaultFlowHolder.assembleFlow(DefaultFlowHolder.java:109)
at org.springframework.webflow.engine.builder.DefaultFlowHolder.getFlowDefinition(DefaultFlowHolder.java:84)
at org.springframework.webflow.definition.registry.FlowDefinitionRegistryImpl.getFlowDefinition(FlowDefinitionRegistryImpl.java:61)
at org.springframework.webflow.executor.FlowExecutorImpl.launchExecution(FlowExecutorImpl.java:138)
at org.springframework.webflow.mvc.servlet.FlowHandlerAdapter.handle(FlowHandlerAdapter.java:193)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:875)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:807)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:571)
at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:501)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
</code></pre>
http://stackoverflow.com/questions/1691853/grails-webflow-keeping-things-out-of-flow-scope0Grails Webflow - keeping things *out* of flow scopepmc2009-11-07T03:15:36Z2009-11-07T09:58:41Z
<p>I'm missing something....</p>
<p>I have a Grails webflow that looks like this:-</p>
<pre><code>def childFlow = {
start {
action {
def targets = []
Target.list().each {target ->
targets.add(new TargetCommand(name: target.name, id: target.id))
}
log.debug "targets are $targets"
[children: targets]
}
on('success').to('selectChild')
}
...
</code></pre>
<p>TargetCommand is serializable. but I get this error:-</p>
<pre><code>Caused by: java.io.NotSerializableException: com.nerderg.groupie.donate.Target
</code></pre>
<p>For some reason the "target" object that is inside the Target.list().each {} closure is getting put into the flow scope, and I can't figure out how to mark it as transient.</p>
<p>I have some code in a Service that has objects placed in the flow scope when I don't want them to too.</p>
<p>How do I stop local transient variables in closures being put in the flow scope? </p>
http://stackoverflow.com/questions/500658/eclipse-webflow-ide0Eclipse Webflow IDEDanny2009-02-01T11:46:33Z2009-11-06T04:00:03Z
<p>I tried using the Spring IDE plugin (webflow) for Eclipse. It hangs on me. Anytime I Spring-enable a project, and open a flow definition file, Eclipse crawls to a halt. Each operation (read click) takes ages.</p>
<p>My eclipse projects is a Maven project and I've Maven-enabled it using a Maven plugin for eclipse. I'm not sure if the Maven plugin causes problems with the Spring IDE plugin. </p>
<p>Has anybody else experienced this same issue? If so, any solutions? </p>
http://stackoverflow.com/questions/1098991/grails-web-flow-exception-handling2grails web flow exception handlingDon2009-07-08T15:57:09Z2009-11-04T01:07:41Z
<p>Hi,</p>
<p>In my Grails app, I have defined the following (simplified) web flow</p>
<pre><code>def registerFlow = {
start {
action {RegistrationCommand cmd ->
try {
memberService.validateRegistrationCommandDTO(cmd)
} catch (MemberException ex) {
flow.regErrorCode = ex.errorCode
throw ex
}
}
on("success").to "survey" // The 'survey' state has been omitted
on(MemberException).to "handleRegMemberException"
on(Exception).to "handleUnexpectedException"
}
handleRegMemberException {
action {
// Implementation omitted
}
}
handleUnexpectedException {
redirect(controller:'error', action:'serverError')
}
}
</code></pre>
<p>If a MemberException is thrown by the "start" state, execution should proceed to the "handleRegMemberException" state, but it doesn't. Is there something wrong with my flow definition, or my understanding of how this should work?</p>
<p>Thanks,
Don</p>
http://stackoverflow.com/questions/1588982/inheritance-and-subflows-with-spring-webflow-in-grails1Inheritance and subflows with Spring WebFlow in grailsDan2009-10-19T14:26:31Z2009-10-19T23:03:44Z
<p>Spring WebFlow supports some advanced reuse features like flow inheritance and subflows. Using this features in SWF xml definitions is pretty easy, for example:</p>
<pre><code><flow parent="parent">
<subflow-state id="addGuest" subflow="createGuest">
</code></pre>
<p>Can I use these features with weblflows in Grails?
Can I define these using the SWF groovy dsl?
How can I use Spring WebFlow definitions in grails?</p>
http://stackoverflow.com/questions/438709/do-you-think-the-spring-webflow-flow-definition-format-would-be-suitable-for-exte0Do you think the Spring WebFlow Flow Definition format would be suitable for externalising a Web Flow for a non Spring framework?Vihung2009-01-13T11:37:41Z2009-10-19T21:38:24Z
<p>I like the idea of Spring WebFlow - particularly the way the flow definitiion abstracts the higher level web flow from components in the Spring Bean Container. </p>
<p>The Flow definition format seems to include everything one needs in a Web Flow - views, actions, transitions, subflows, outcomes etc.</p>
<p>Do you think the Spring WebFlow Flow Definition format would be suitable for externalising a Web Flow for a non Spring framework? Something that does not use Spring, or perhaps even Java, for its underlying components.</p>
<p>Bear in mind, I am thinking of only page flow in particular, not general workflow or BPEL type stuff</p>
http://stackoverflow.com/questions/1437597/spring-mvc-and-webflow-param-autobinding0Spring MVC and WebFlow param autobindingal nik2009-09-17T08:56:16Z2009-10-13T17:49:23Z
<p>Hi all,</p>
<p>I've a Spring MVC controller mapped to the url <strong>/blah/abc/index</strong> that is defined like</p>
<pre><code>@RequestMapping(method = RequestMethod.GET)
public void index(MyObj myObj, Model model) {...}
</code></pre>
<p>Now, MyObj contains int x, int y params. <br>
If the req that comes in is like <strong>/blah/abc/index?x=1&y=2</strong> MyObj variables are automatically populated.</p>
<p>I want to achieve the same with WebFlow. I've a view /blah/abc/list
and from here I want to be able to call the springMVC index method (with a MyObj populated with the req params x and y /blah/abc/list?x=1&y=2 )</p>
<p>Something like</p>
<pre><code><view-state id="list" view="blah/abc/list">
<on-render>
<evaluate expression="abcController.index(myObj,??model??)" result="flowScope.abcList" />
</on-render>
<transition on="delete" to="deleteAbc" />
<transition on="create" to="createAbc" />
</view-state>
</code></pre>
<p>Do you know how can I achieve this?</p>
<p>Thank you</p>
http://stackoverflow.com/questions/798375/in-spring-webflow-unit-test-how-do-you-assert-that-a-view-state-has-a-view-of-a0In Spring Webflow unit test, how do you assert that a view state has a view of a given name?Scott Bale2009-04-28T14:51:22Z2009-09-23T17:30:49Z
<p>I'm developing a Spring webflow, trying to use TDD so I've extended AbstractXmlFlowExecutionTests. I can't see an obvious way to assert what I would have thought would be a simple thing: that a view state has an associated view of a given name. For example, given this flow (excerpt):</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<flow ...>
...
<view-state id="foo" view="barView">
</view-state>
</flow>
</code></pre>
<p>and unit test</p>
<pre><code>public void testAssertFooStateHasBarView() {
...
assertCurrentStateEquals("foo");
assertTrue( getFlowDefinition().getState("confirmation").isViewState());
// Surely there's an easier way...?
ViewState viewState = (ViewState)getFlowDefinition().getState("foo");
View view = viewState.getViewFactory().getView(new MockRequestContext());
// yuck!
assertTrue(view.toString().contains("barView"));
}
</code></pre>
<p>Is there a simpler way to assert that state <code>foo</code> has view <code>barView</code>?</p>
http://stackoverflow.com/questions/875948/is-spring-ever-going-to-combine-mvc-and-webflow0Is Spring ever going to combine MVC and WebFlow?Daniel Alexiuc2009-05-18T01:45:26Z2009-08-27T14:58:50Z
<p>I thought I read Juergen Holler somewhere once in the past say that a future goal of Spring was to combine Spring MVC and WebFlow... </p>
<p>Is this still the case?</p>
<p>At the moment they still seem to be fairly separate projects, with WebFlow being recommended as an EXTENSION to MVC. As a developer it would be great if I could use both and define all my controllers in the same way (either Java or XML).</p>
http://stackoverflow.com/questions/783617/how-do-i-write-a-custom-converter-in-spring-web-flow-20How do I write a custom converter in Spring Web Flow 2?Wolfram2009-04-23T21:32:05Z2009-08-27T14:57:19Z
<p>Hello. I am using Web Flow 2.0.7 with Spring MVC and Hibernate.</p>
<p>My problem is about custom converters for my custom types and database connection from within my converter.</p>
<p>Let's say I have a type <em>Person</em> and the <em>Person</em> has a field of my custom type <em>Title</em>, and all <em>Titles</em> are already in my database. Now I have an html form, in which a user can populate a <em>Person</em> instance, including selecting the <em>Title</em> in a select drop-down box.</p>
<p>In the flow definition I get all <em>Titles</em> from the database and they are shown in the dropdown box using a custom converter, converting <em>Title</em> to <em>String</em> and later back to <em>Title</em>.</p>
<p>My question is about the process of converting back from <em>String</em> (which is the database ID, which I set as value on the element) to the correct <em>Title</em> object from my database. Basically: How to do it?</p>
<p>So far, I was unable to get a titleManager injected into my converter to get access to the database. This scenario was commented on in the <a href="http://forum.springsource.org/showpost.php?p=218316&postcount=20" rel="nofollow">Spring Web Flow Forum</a>. Another solution might be to cache the <em>Titles</em> before rendering the view and somehow get the in-memory <em>Title</em> after the form was POSTed.</p>
<p>I would really appreciate it, if someone could enlighten me, how to handle this kind of data binding. I was unable to get it working so far and thus, I get minimal use out of the otherwise awesome webflows.</p>
<p>I already posted <a href="http://forum.springsource.org/showthread.php?t=70536" rel="nofollow">a thread on the Web Flow Board</a>, but still missing a best-pratice, which I am unable to find by myself.</p>
<p>Thank you so much!</p>
<p>Wolfram</p>
http://stackoverflow.com/questions/1027823/question-regarding-spring-webflow-2-0-from-a-newbie0Question regarding Spring Webflow 2.0 from a newbie ...Frank2009-06-22T15:25:32Z2009-08-27T14:56:47Z
<p>Hello,</p>
<p>I'm new to the Spring MVC Framework and Webflow, and ofcourse, I've been thrown on a project involving these technologies. I'm having a problem that I can't get answered on the Spring website forums, so I thought I'd check with the smart people on this forum.</p>
<p>I have a view (i.e. screen) which when I exit, I want to go to different screens depending on the event that caused me to exit. So, I basically have multiple "transition on" statements for the various event. So far so good. The problem occurs when I perform multiple "evaluate expressions" within each of these transitions. I get very unpredictable results. It almost seems that sometime only the first evaluate gets executed and my app hangs. The samples and documentation I've referenced are very simple in nature. Generally, they don't evaluate expressions with transitions. However, I need to set up variables specific to the screen I'm going to.</p>
<p>I know there are action and decision state tags, but I run into similiar problems when I insert multple "expression evaluates."</p>
<p>Can anyone offer any insights on how to what I'm trying to accomplish?</p>
<p>For the record, I'm working on a new project where most of the people are new to web development. We're "refreshing" our major product from an older, client server architecture to a new web based version. So, I have no resources here to go to help. The 2 people here who supposedly know a little about web flow seem stumped too. I suspect when I was told to just "use their sample code" I am attempting to emulate code from people who weren't sure of what they were doing either.</p>
<p>Thanks</p>
<p>Frank </p>
http://stackoverflow.com/questions/804326/spring-web-flow-how-can-i-set-up-unit-test-with-values-already-in-conversations1Spring Web Flow - How can I set up unit test with values already in conversationScope?TM2009-04-29T21:19:19Z2009-08-24T22:56:15Z
<p>I am working on a project using Spring Web Flow 2.0. </p>
<p>I am trying to unit test a flow that begins with a decision state. The decision state checks the value of an object that is on the <code>conversationScope</code>. I cannot figure out how to insert a value into the <code>conversationScope</code> for the unit test.</p>
<p>I have tried:</p>
<pre><code>getConversationScope().put("someName", value);
MockExternalContext context = new MockExternalContext();
startFlow(context);
</code></pre>
<p>However, it seems that when I call <code>startFlow(context)</code> the value is cleared. </p>
<p>I also tried:</p>
<pre><code>MockExternalContext context = new MockExternalContext();
setCurrentState("someDecisionState");
resumeFlow(context)
</code></pre>
<p>But the test fails with an error telling me that I cannot resume from a decision state, only from a view state.</p>
<p>Does anyone know how I can insert mock values on the <code>conversationScope</code> so that I may test these cases?</p>
http://stackoverflow.com/questions/174380/spring-webflow-move-through-view-states1Spring webflow : Move through view statesOlivier2008-10-06T13:55:30Z2009-08-24T15:07:40Z
<p>Within a spring webflow, i need to implement a navigation bar that will allow to "step back" or resume the flow to one of the previous view.</p>
<p>For example :</p>
<ul>
<li>View 1 = login</li>
<li>View 2 = My informations</li>
<li>View 3 = My messages</li>
<li>View 4 = Close session</li>
</ul>
<p>For this example, i would like to return back to view 2 from the view 4 page.</p>
http://stackoverflow.com/questions/1222567/webflow-2-0-question1Webflow 2.0 QuestionFrank2009-08-03T14:08:57Z2009-08-14T14:37:45Z
<p>I have a view-state that can return multiple events. For most of them, there is a common jave method I want to "evaluate." There are are few where I want to do something different. Each event, however, will transition to a different state. My web flow code now is repeating the evaluate of the method multiple times, once for each applicable transition. Of course, if I wanted to always evaluate the method, I could call it in the on-exit, but since I don't want to do it in all cases, I'm stuck repeating it in the transition calls. Is there any other way to do this?</p>
<p>Frank</p>
http://stackoverflow.com/questions/334431/integrating-spring-webflow-2-and-apache-tiles2Integrating Spring Webflow 2 and Apache TilesAlex Marshall2008-12-02T15:55:14Z2009-07-23T15:45:21Z
<p>I've recently started upgrading some applications to use Spring Webflow 2, and I want to make use of the new Ajax functionality that comes with Webflow 2. Can somebody please direct me to a tutorial for integrating Tiles 2 with Spring Webflow (since that's apparently what they recommend). I've found the documentation that comes with Webflow 2 in this regard to be absolutely useless.</p>
http://stackoverflow.com/questions/1002170/grails-web-flow1Grails web flowDon2009-06-16T15:15:40Z2009-06-18T01:10:43Z
<p>Hi,</p>
<p>Is there any way to pass model data to a view state? Consider the following example view state:</p>
<pre><code>class BookController {
def shoppingCartFlow = {
showProducts {
on("checkout").to "enterPersonalDetails"
on("continueShopping").to "displayCatalogue"
}
}
}
</code></pre>
<p>If I want to pass the data model <code>[products: Product.list()]</code> to showProducts.gsp, is there any way to do this apart from preceding the view state with an action state that stores the model in flow scope? </p>
<p>Thanks,
Don</p>
http://stackoverflow.com/questions/997885/cforeach-using-list-must-evaluate-to-a-collection-map-array-or-null1c:foreach using List: Must evaluate to a Collection, Map, Array, or nullscottschulthess2009-06-15T19:21:10Z2009-06-15T19:59:02Z
<p>So I'm trying to loop over a <code>List<MyClass></code> for display in the view of my spring webflow application. However I get the error Must evaluate to a Collection, Map, Array, or null.</p>
<pre><code> <c:forEach items="#{orderedStuff}" var="a">
#{a.PrettyName}test
</c:forEach>
</code></pre>
<p>I've also tried $ instead of #.</p>
<p>Here is my xml flow definition.</p>
<pre><code><view-state id="bookToc">
<on-render>
<evaluate expression="stuffService.getOrderedStuff(stuff)" result="viewScope.orderedStuff"
result-type="dataModel" />
</on-render>
</view-state>
</code></pre>
<p>And the function that returns the list of sections.</p>
<pre><code>public List<Stuff> getStuff(Stuff stuff) {
final List<Stuff> orderedStuff= new ArrayList<Stuff>();
final List<Stuff> sections = stuff.getStuff();
PropertyComparator.sort(sections, new MutableSortDefinition("sortOrder", true, true));
for (Section stuff : stuffs) {
orderedStuff.add(stuff);
this.addSubsectionsToOrderedStuff(stuff, orderedStuff);
}
return orderedStuff;
}
</code></pre>
<p>The thing about it is, this code DOES WORK</p>
<pre><code><h:dataTable id="stuffList" value="#{orderedStuff}" var="s"
rendered="#{not empty orderedStuff}">
<h:column>
<f:facet name="header">
Section Title
</f:facet>
#{s.prettyName}
<h:dataTable value="#{s.chapters}" var="c" rendered="#{not empty s.chapters}">
<h:column>
<f:facet name="header">
Chapter Title
</f:facet>
#{c.title}
</h:column>
</h:dataTable>
</h:column>
</h:dataTable>
</code></pre>
http://stackoverflow.com/questions/227532/how-do-i-pass-model-data-beween-a-view-state-and-action-state-in-spring-web-flow2How do I pass model data beween a view state and action state in Spring Web Flow 2.bmatthews682008-10-22T21:01:27Z2009-06-06T20:00:01Z
<p>In the Web Flow below I bind form data to a flow variable (lifeCycleForm) on a submit event in the view state. I have verified that the name, label and description properties are all populated as expected.</p>
<p>However, when the expression in the action state is evaluated all three properties are null. My form bean is serializable and I am just using simple string properties.</p>
<p>What I am doing wrong?</p>
<p>I am pretty new to Spring WebFlow so I might have missed something obvious.</p>
<pre><code><var name="lifeCycleForm" class="com.btmatthews.freelancer.lifecycle.portlet.LifeCycleForm" />
<view-state id="createLifeCycle" model="lifeCycleForm">
<binder>
<binding property="name" required="true" />
<binding property="label" required="true" />
<binding property="description" required="false" />
</binder>
<transition on="submit" to="createLifeCycleAction" />
<transition on="cancel" to="lifeCycleCreationCancelled" bind="false" />
</view-state>
<action-state id="createLifeCycleAction">
<evaluate expression="lifeCycleService.createLifeCycle(lifeCycleForm.name, lifeCycleForm.label, lifeCycleForm.description, null, null)" />
<transition on="success" to="lifeCycleCreated" />
<transition on="failure" to="createLifeCycle" />
</action-state>
<end-state id="lifeCycleCreated" />
<end-state id="lifeCycleCreationCancelled" />
</code></pre>
<p><strong>Update:</strong> I neglected to mention in my original posting that it was my unit tests that were failing. I have since learned that AbstractFlowExecutionTests does not implement binding of request parameters. This seems like a bit of an oversight to me. I have tried latest nightly Spring WebFlow 2.0.4 and the behaviour remains the same.</p>
<p><strong>Update:</strong> My problems are that Spring WebFlow mocks do not simulate form submission. </p>
<p>Thanks in advance,
Brian</p>
http://stackoverflow.com/questions/486607/how-to-solve-refreshing-issues-in-facelets-and-spring-web-flow0How to solve refreshing issues in Facelets and Spring Web Flow?InverseFalcon2009-01-28T05:59:41Z2009-02-02T18:46:30Z
<p>For my particular project, I'm using Facelets (1.1.14), MyFaces (1.2.3), and Spring Web Flow (2.0.3). My IDE is JDeveloper 10.1.3.3. My browser is IE6 (work requirement). </p>
<p>Okay...ran into a very weird issue today. Normally, when I'm using Facelets, I can make whatever changes I want to my xhtml file, refresh my browser window, and see the changes immediately. I've got Facelets development set to true, and Facelets refresh period set to 1. </p>
<p>Up to this afternoon, I've had no problem with Facelets refreshes on this project. However, just this afternoon, I starting finding that changes to css styles and classes did not appear when I refreshed the page. Then I started seeing similar issues with other page elements. In some cases the changes never appear. At other times, I can refresh the page after a little while has passed and the changes have been reflected. </p>
<p>What happened to my Facelets page refreshes? It's like they've gone all sticky. I'm used to immediate changes on page refresh without complications. Has anyone run into this before? Any solutions or suggestions?</p>
<p><em>EDIT</em></p>
<p>The issue has something to do with Spring Web Flow. One of my pages is pure Facelets, and it's reflecting changes on refresh immediately. My other xhtml pages are invoked as view states in my flow definitions, and show the symptoms described above. Still, they were working fine just a day or two ago...</p>
<p><em>EDIT</em></p>
<p>Ok, I've been able to isolate the symptom, but I still don't know its cause.</p>
<p>It seems that whenever I have a facelets xhtml file that is rendered as a view-state of a flow and has an h:form element, then I get odd behavior when I make changes to the JSF elements on my page and refresh my browser. This includes not showing changes in their styles or style classes.</p>
<p>Changes to regular HTML elements (like changing the style of an input element) seem to work fine. Changing the h:form to a regular HTML form allow for immediate changes on page refresh, even on JSF elements. When I view the page when I'm not executing a flow (just using Facelets), then I never encounter any problems, even when using an h:form.</p>
<p>Please tell me someone has encountered this before, and has some solution. Anyone? </p>
http://stackoverflow.com/questions/235282/with-spring-webflow-2-what-request-parameters-if-any-are-necessary-to-trigger0With Spring Webflow 2, what request parameters, if any, are necessary to trigger "submit" transition from view-state?Scott Bale2008-10-24T21:14:56Z2008-10-24T21:32:23Z
<p>My view-state to action-state transition does not appear to be happening. In the following example, I want the view-state to transition to the action-state when the user submits the form. Pretty basic stuff. But the <code>setA()</code> method does not get called.</p>
<p>In the jsp, does the <code> submit input</code> element need to have a name of "<code>_</code>eventId", or "<code>_</code>eventId<code>_</code>submit", or is no name necessary? Or is something else wrong? What is webflow checking against when evaluating the <code>on</code> attribute of <code>transition</code> element?</p>
<pre><code><flow ... start-state="stateA">
<var name="flowBean" class="demo.webflow.WebFlowBean" />
<view-state id="stateA" view="fooView">
<transition on="submit" to="changeA" />
</view-state>
<action-state id="changeA">
<evaluate expression="flowScope.flowBean.setA(requestParameters.value)" />
...
</action-state>
</code></pre>
<p>JSP:</p>
<pre><code><form action="demo.htm" name="myform" id="myform" method="post">
<input type="hidden" name="_flowExecutionKey" value='<c:out value="${flowExecutionKey}"/>'/>
<input type="submit" name="????" value="Continue"/>
</code></pre>
http://stackoverflow.com/questions/102453/reuse-spring-webflow-definitions-with-different-action-implementations0Reuse Spring Webflow definitions with different action implementationsPR2008-09-19T14:50:08Z2008-09-22T12:20:48Z
<p>Hi,</p>
<p>I got pretty big webflow definition, which I do not want to copy/paste for reusing. There are references to action bean in XML, which is kind natural.</p>
<p>I want to use same flow definiton twice: second time with actions configured differently (inject different implementation of service to it). </p>
<p>Is there easy way to do this?</p>
http://stackoverflow.com/questions/86487/what-is-the-best-documentation-for-snapshots-and-flow-repositories-in-spring-web1What is the best documentation for snapshots and flow repositories in Spring Web Flow?Alex Miller2008-09-17T19:06:40Z2008-09-19T18:34:53Z
<p>I'm looking for more and better documentation about snapshots, flow repositories, and flow state serialization in Spring Web Flow. Available docs I've found seem pretty sparse. "Spring in Action" doesn't talk about this. The Spring Web Flow Reference Manual does mention a couple flags here:</p>
<p><a href="http://static.springframework.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html#tuning-flow-execution-repository" rel="nofollow">http://static.springframework.org/spring-webflow/docs/2.0.x/reference/htmlsingle/spring-webflow-reference.html#tuning-flow-execution-repository</a></p>
<p>but doesn't really talk about why you would change these settings, usage patterns, etc.</p>
<p>Anyone have a good reference?</p>
http://stackoverflow.com/questions/62713/accessing-a-bean-with-a-dot-in-its-id1Accessing a bean with a dot(.) in its IDArnelism2008-09-15T13:12:04Z2008-09-15T21:29:17Z
<p>In a flow definition, I am trying to access a bean that has a dot in its ID</p>
<p>(example: <code><evaluate expression="bus.MyServiceFacade.someAction()" /></code></p>
<p>However, it does not work. SWF tries to find a bean "bus" instead.</p>
<p>Initially, I got over it by using a helper bean to load the required bean, but the solution is inelegant and uncomfortable. The use of alias'es is also out of the question since the beans are part of a large system and I cannot tamper with them.</p>
<p>In a nutshell, none of the solution allowed me to refernce the bean directly by using its original name. Is that even possible in the current SWF release?</p>