Questions tagged [spring-webflow]

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.

1302 questions
2
votes
1 answer

Error JSF 2.1.at org.apache.myfaces.view.facelets.compiler.TagLibraryConfig$LibraryHandler.endElement

I have a error when run my myfaces(JSF 2.1), richfaces 4, 2.3.0.BUILD-SNAPSHOT, in Jboss 7.0.2 "Arc": 11:50:33,556 SEVERE [org.apache.myfaces.view.facelets.compiler.TagLibraryConfig] (http--127.0.0.1-8080-1) Error Loading Library:…
Vodo-Siosk Baas
  • 183
  • 3
  • 12
  • 27
2
votes
0 answers

Spring Webflow 2.3.0 Samples unstartable... No Idea how to fix

I'm currently evaluating Spring (with a focus on WebFlow) for future projects. After reading lots of docs and articles (most of which didn't help much) I downloaded the current release of Spring WebFlow (2.3.0 at the time of writing) and tried to…
Nicktar
  • 5,548
  • 1
  • 28
  • 43
2
votes
1 answer

How to configure Shiro + Spring MVC when @Controller REDIRECTS to a login page

I have a typical Spring MVC + GWT architecture with Apache Shiro as a security layer. Problem: No matter what protocol is used for a request to the App server, pages should be returned in the protocol specified in the request's "X-Forwarded-Proto"…
Djam
  • 963
  • 1
  • 8
  • 10
2
votes
5 answers

Confused about rich framework to be used with spring

my requirement is to develop rich web applications quickly and easily, and the framework must be easy/compatible with spring something like IceFaces i am confused about IceFaces/PrimeFaces, or use jsp with YUI/DWR please advise me.
2
votes
1 answer

popup="true" not working with in Spring webflow 2.3.0 for JSF 2.0 environment

My issue is that I am not able to show popup using spring webflow.I have a screen A , where based on a particular flag, I want to show a pop-up B on clicking of a command button(primefaces or Spring faces). I tried following things My web-flow looks…
C4CodeE4Exe
  • 3,840
  • 8
  • 39
  • 46
2
votes
1 answer

Access to freemarker variables in html file using FreeMarkerViewResolver

I configured my web application like this link http://static.springsource.org/spring/docs/3.0.0.M3/spring-framework-reference/html/ch17s04.html My context
khong07
  • 316
  • 1
  • 4
  • 10
2
votes
1 answer

Ruby on Rails: Need Recommendations for Wizards/Spring Webflow-type Solutions

I'm starting work on a multi-page web application using Ruby on Rails 3. My webapp won't be using a database directly - it'll be calling a web service to persist the collected information. Are there any equivalents to Spring Webflow that more…
JW8
  • 1,496
  • 5
  • 21
  • 36
2
votes
1 answer

Accessing Spring WebFlow EL variables from Javascript

I try to find a way to access SWF special EL variables, such as a flowScope, and a custom variables, set in custom-flow.xml, from the Javascript. But I haven't find solution yet. I am using Sping Framework 3.0, Spring WebFlow 2.0, JSP/JSTL for…
2
votes
1 answer

Spring webflow - mvc controller as subflow

Is there a way of using spring MVC contollers as subflows in spring webflow? I have some data browsers written as plain MVC controllers and I would like to use them in my flows to browse/select data.
Łukasz Dumiszewski
  • 2,888
  • 2
  • 21
  • 13
2
votes
2 answers

Spring/Webflow problem with validation

Problem with validation I would have run the validation when the method "registered" In webflow: ... ... My model looks like this: class User { private String…
tomasz-mer
  • 3,753
  • 10
  • 50
  • 69
2
votes
1 answer

harmony between webflow and Spring MVC Controllers

Spring 2.5.6SEC02 Spring Webflow 2.0.9 I have a normal flow in which I have a form in flow scope. I now want to call my annotated spring MVC @Controller and get access to the form information. I basically want to display details as a modal dialog…
jtop
  • 21
  • 1
2
votes
1 answer

Spring WebFlow - problem with rest mapping

I have problem with mapping in Spring Webflow 2.3.0 I got error when I want to excute: http://localhost:8090/myWebApp/register/other http://localhost:8090/myWebApp/verify or http://localhost:8090/myWebApp/register etc works Can anybody help?
tomasz-mer
  • 3,753
  • 10
  • 50
  • 69
2
votes
2 answers

Problems with Hibernate Validator and Spring Webflow

I'm trying to validate a form using Spring WebFlow and Hibernate Validator Annotations, but I'm doing something wrong. If I use the Spring validation way (ValidationContext, MessageContext, validate${state}, etc), all works fine, but I want to use…
Jordi
  • 21
  • 3
2
votes
2 answers

Differences when running Tomcat from within Intellij IDEA?

I have a very bizarre problem with a Spring 3.5, Webflow 2.2 application, running in Tomcat (6.0.32) Part of the webflow calls to retrieve a list of objects. This list is placed in a viewScope object for use by a JSP view. Each object in this list…
David
  • 962
  • 2
  • 10
  • 29
2
votes
3 answers

Adding spring-cloud-starter-sleuth dependency to a Spring-Boot App some of the Rest Doc test failing

I have a Spring-Boot 2.1.4 application with n-RestDoc tests for Flux controller. Environment: Spring-Boot 2.1.4 Junit 5.4.0 spring-restdocs-webtestclient spring-webflux If I add the spring-clout-starter-sleuth dependendcy to the app, some of the…