Questions tagged [spring-webflow-2]

Spring Webflow is a web-app framework which helps to define the page navigation rules in a intuitive, and reusable way.

Spring Web Flow is a Spring MVC extension that allows implementing the "flows" of a web application. A flow encapsulates a sequence of steps that guide a user through the execution of some business task. It spans multiple HTTP requests, has state, deals with transactional data, is reusable, and may be dynamic and long-running in nature.

296 questions
0
votes
2 answers

Spring webflow view resolver config: subfolders for JSP Files

Using Spring webflow and in the serlvet-configuration I have this for JSP files:
kumoyadori
  • 337
  • 2
  • 10
  • 21
0
votes
1 answer

action-state not accept evaluate tags Spring Web Flow 2.3

Eclipse marks this error cvc-complex-type.2.4.a: Invalid content was found starting with element 'action-state'. One of '{"http://www.springframework.org/schema/webflow":on-end, "http://www.springframework.org/schema/webflow":output,…
0
votes
2 answers

Spring Webflow transition to the next state with Button eventid

I have a main flow, which is the link from index.jsp, the entry point of the test application that links into a subflow. The mainflow is main-flow.xml and is mapped to main.htm in the bean declaration with…
kumoyadori
  • 337
  • 2
  • 10
  • 21
0
votes
1 answer

Spring Webflow IllegalStateException: Neither BindingResult nor plain target object for bean name available as request attribute

My ultimate goal is to have a model with annotations and do validations on form inputs. I have tried that with writing some validators but it didn't work (The form would not even show fields where I could enter sp there was nothing to test the…
kumoyadori
  • 337
  • 2
  • 10
  • 21
0
votes
1 answer

How to make webflow view call only one validator

I have web flow with this view:
MAGx2
  • 3,149
  • 7
  • 33
  • 63
0
votes
1 answer

Cant find any tag

I want to add webflow to a web. I have the webflow dependency in the pom.xml, I have started to add beans, but seems unable to find any tag, as I see in every tutorial. I have all my beans in servlet-context.xml, and this is it:
Fustigador
  • 6,339
  • 12
  • 59
  • 115
0
votes
1 answer

Spring Web Flow: append view state id to URL

I am using spring web flow 2.x and is trying to append the view state id to the URL. I want to save the view state id to request scope and append it to URL everytime user clicks 'next' or 'previous'. Is this possible using a Custom Flow URL…
mi3
  • 581
  • 1
  • 7
  • 13
0
votes
1 answer

Finalize beans of a certain user

I need a specific scope in my spring-managed (w/ spring-security) web application. But this scope must have a narrower scope than session and wider than request. Corresponding beans should be initialized and destructed on certain cases, within…
tugcem
  • 1,078
  • 3
  • 14
  • 25
0
votes
1 answer

Fancybox not showing media but IS loading lightbox

On http://herfilms.tv/ I have fancybox running on the central image (the sofa), and when clicked I want it to load a specific vimeo video in an I frame. As you can see, the I frame appears but the content is nowhere to be found. What am I…
Sam Slater
  • 69
  • 1
  • 10
0
votes
1 answer

Spring webflow string converter which is password field aware

I have created a custom string converter for spring webflow that trims spaces for every String property public class StringTrimmerConverter implements Converter { public Object convertSourceToTargetClass(final Object object, final Class clazz)…
Marko Vranjkovic
  • 6,481
  • 7
  • 49
  • 68
0
votes
1 answer

put process indicator on h:commandButton

Currently we are using and My goal is to prevent system from double click problem and also gives users a sign that system is in process - because system is gonna calculate lots o things after user clicks that h:commandButton. Button…
Vikas
  • 127
  • 1
  • 7
  • 16
0
votes
2 answers

Empty serialize form after ajax call

I am using spring webflow and I have trouble with portial rendering of my view state page. I always get $('#form').serialize() = "" after ajax call. I have next ajax call: var bindContinueButton = function () { $('#continueBtn').bind('click',…
user2486291
  • 117
  • 1
  • 2
  • 11
0
votes
2 answers

redirect/ forward in Spring WebFlow to subdomain

I have a Java Spring Webflow application and it need to redirect to it's own sub domain for language choice. i.e. mysite.com to fr.mysite.com. I have tried externalRedirect, but just shows a blank html page. Here is the webflow defenition…
enkor
  • 7,527
  • 3
  • 31
  • 55
0
votes
1 answer

Dynamic variables in grails webflow

I have a problem handling variables in grails webflow Relevant part of the controller looks like this ipcount{ on('next'){ flow.ipcount = params.int('ipcount') [flow: flow] }.to('systems') …
mbs
  • 421
  • 2
  • 8
  • 28
0
votes
0 answers

TypeMismatch in Spring Conversion Service using Spring WebFlow

We are getting a type mismatch error, while converting our string id to Brand object. We have searched this forum and followed pretty much all steps, still could not resolve it. Could u please, take a look at our configuration and our customer…