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

MVC Controller and Web Flow Controller - Request handling priorities

I'm working with integration Spring Web Flow into Spring MVC web application. I mapped Spring DispatcherServlet to *.html like below. spring
marioosh
  • 27,328
  • 49
  • 143
  • 192
2
votes
1 answer

ReactorClientHttpConnector(( opt) -> {}) is undefined

I need help for WebFlux client implementation for the latest version spring-webflux 5.1.3.RELEASE. public RestClient(String gatewayUrl, String token, String username, String password, SslContext sslContext) { this.token = token; …
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808
2
votes
1 answer

Spring Webflow , Primefaces with Comet (Atmosphere)

Thinking to start a project using Spring Web Flow with Primefaces. I need to use comet so i figured Primefaces uses Atmosphere. I'm not really experienced with the Atmosphere / Comet business so any pointers about where to start is…
add9
  • 1,503
  • 3
  • 17
  • 31
2
votes
0 answers

spring webflow and thymeleaf

For a new Spring (Boot) application I'm considering using Spring WebFlow. As other applications we use are using Thymeleaf for views, base templates are available and I very much want to reuse those. The problem however is that Spring WebFlow and…
Ewald
  • 21
  • 2
2
votes
3 answers

Variable lookup parameter for resourceBundle?

I'm currently using the resourceBundle variable to get text values in my JSF code e.g. like this: Is there any way, to put the message key in a variable, and give it as a dynamic parameter…
Rune Aamodt
  • 2,551
  • 2
  • 23
  • 27
2
votes
1 answer

Spring Web Flow 2: problem to save multiple models with one view

I have a form "mandatorydata-change.jsp" where the contact data (name, first name, ...) and the address of the user data must be specified. The contact data have his own table and the address data have his own table, so two different tables for a…
Lukem
  • 123
  • 2
  • 3
  • 10
2
votes
1 answer

Unable to get FlowHandlerMapping working in Spring Webflow

I'm using SWF 2.1 with Spring 2.5.6. and am trying to get the default mapping strategy for 2.1 to work. I had previously been using the mapping strategy that was the 1.0 default (whereby the flow id was retrieved from the request parameters) In…
Ceniza
  • 120
  • 2
  • 11
2
votes
2 answers

How is Spring MVC different from Spring Web Flow?

I have to build the online ecommerce website using Java. As I want to use AJAX libraries like jQuery/prototupe/moottols, someone told me to go for Request/action based frameworks as I am from web development background. So i started learing Spring.…
John
2
votes
1 answer

Grails WebFlow State Name

Grails noob here... How do I get the state name inside a Grails webflow state? I'm prototyping a mobile app using Grails WebFlow and jQueryMobile. Because it's a mobile app comprised primarily of lists, I manage the back events using a stack like…
lambmj
  • 1,843
  • 2
  • 21
  • 27
2
votes
1 answer

How to set some parameter in end state externalredirect in Spring Webflow?

My question is regarding Spring Webflow. How can we set a variable in the end state?
Bachas
  • 233
  • 6
  • 16
2
votes
0 answers

Spring Web Flow & Java Server Faces @ManagedProperty injection always null during flow

I have succesfully integrated JSF with Spring WebFlow & PrimeFaces, but injection by @ManagedProperty is always NULL during my web flow but using @Autowired annotation injection works. I would like to know why @ManagedProperty does not work but…
2
votes
2 answers

Problem with webflow(s) in Grails

I've just come across a rather odd problem whilst testing my applications webflows. I have two seperate webflows that are accessed once a user logs in depending on whether the user is male or female, they begin a process which sends them on a…
David Brown
  • 3,021
  • 3
  • 26
  • 46
2
votes
1 answer

nested exception is java.lang.NoClassDefFoundError: org/springframework/web/context/request/async/AsyncRequestTimeoutException

I have a spring(4) mvc app where I configured a spring web flow. Hitting the flow url (/context/pizza/buy), I am getting this exception. Full exception trace SEVERE: Servlet.service() for servlet [dispatcher] in context with path [/SpringWeb] threw…
Mujahidul Islam
  • 61
  • 1
  • 1
  • 7
2
votes
2 answers

How can I serve binary content from a JSF/Webflow app?

I have a JSF 1.2/Spring Web flow 2.0.7 app that need to serve binary content (an image). This content is fetched from a web service (along with some other data) as a Base64-encoded string, and ends up in the bean together with the rest of the data.…
mranders
  • 1,790
  • 2
  • 17
  • 31
2
votes
0 answers

Spring webflow - I have to set application context manually

I'm having a weird problem with my Spring application with Spring Webflow. The problem is, when I set flow like in documentation: @Bean public FlowBuilderServices flowBuilderServices() { return getFlowBuilderServicesBuilder() …
Patryk Godziszewski
  • 135
  • 1
  • 2
  • 17