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
7
votes
1 answer

Primefaces: Exclude column from row selection in p:dataTable

I've got problem with p:dataTable and excluding a column from single row selection. I have 4 columns in my dataTable. First 3 are needed to display fileId, fileName and uploadDate. In 4th column there is a command button for each row that start…
Rozart
  • 1,668
  • 14
  • 27
7
votes
3 answers

How to implement a complex page flow in a Java Web application

I am trying to implement a reasonably complex page flow (100+ pages) as a traditional web application. I found a few options, but none of them are 100% convincing Harcode the flow into the controllers, do redirects, etc. This is obviously not the…
Peter Szanto
  • 7,568
  • 2
  • 51
  • 53
7
votes
2 answers

How to redirect Spring security concurrent session control 'message' on login screen?

I have web application, in which I have used Spring framework. For the concurrent session control I have use spring feature where only 1 logged in session will be maintained for 1 user as soon as that user logs in to another session , he/her…
Dhruv
  • 10,291
  • 18
  • 77
  • 126
6
votes
1 answer

Configure Spring Web Flow with Java configuration

I am using Spring 3.1 and want to include Spring Web Flow 2.3. One thing I really like about Spring is that you can leave off the XML configuration in favour of Java-only configuration using @Configuration and @Bean annotations. However, I have not…
Michael Piefel
  • 18,660
  • 9
  • 81
  • 112
6
votes
1 answer

Display info messages in jsp for Spring WebFlow 2.0

I have a model with a list of selected topics. Every topic can be presented in a room and there are more rooms that need to be chosen depending of availability. The user can set preferred room for presenting. If it is unavailable, but some other is…
vl4d1m1r4
  • 1,688
  • 12
  • 21
6
votes
1 answer

Spring Webflow DataBinding to immutable objects via a constructor?

Is there any way of using an immutable object as a model within a view-state in Spring webflow? I know Spring webflow generally tends towards setters for this kind of thing, but I was wondering if anyone knew of a custom DataBinder or WebDataBinder…
Spedge
  • 1,668
  • 1
  • 19
  • 36
6
votes
1 answer

How to configure Spring and Apache Tiles definitions to resolve jsps from classpath

This one's not very short, so please bear with me. I'm developing a web app with Spring 3.0, Apache Tiles 2.2 and Spring WebFlow 2.2. One important requirement is that it needs to be very modular, meaning each application module will be delivered as…
ovichiro
  • 301
  • 3
  • 7
6
votes
2 answers

Evaluating methods prior to validation in Spring Webflow

Webflow allows you to execute particular expressions via the element in a flow. However is it possible to somehow evaluate an expression BEFORE webflow attempts to validate the page?
beatupunit
  • 99
  • 5
6
votes
1 answer

Spring framework replacement for FlowAction

I recently inherited a very old code base (written in 2006) that uses the spring framework. Right now, the goal is to get it semi-functional, which I've almost done. However, there is some code I can't seem to fix that uses the class "FlowAction"…
blh83
  • 495
  • 5
  • 17
6
votes
3 answers

Integrating Spring Webflow 2 and Apache Tiles

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…
Alex Marshall
  • 10,162
  • 15
  • 72
  • 117
6
votes
3 answers

How to change default format in StringToDate? Spring WebFlow

Default date format in Spring WebFlow is "yyyy-MM-dd". How to change to another format? "dd.mm.yyyy" for example.
Alexander
  • 781
  • 2
  • 9
  • 21
6
votes
1 answer

Integrating Spring WebFlow with Thymeleaf

I am developing SpringMVC application using Thymeleaf Templates fragment. I want to add simple flow. This is my project structure and configuration: My spring-servlet.xml file:
rpieniazek
  • 2,160
  • 2
  • 12
  • 16
6
votes
0 answers

Spring WebFlow future and version

This is more to Spring Team supporting Spring WebFlow -- What is the Spring WebFlow road-map. Can you describe its version convention how come it differs from rest of the core Spring Offerings. Ex Spring 4 support offered in Spring WebFlow 2.4…
uralmash
  • 71
  • 2
6
votes
2 answers

Prevent Cross-Site Request Forgery in a Spring WebFlow Application

I'm looking for a (hopefully straightforward) way to add CSRF protection to an application build on Spring WebFlow 2. An approach that migrates well to Spring WebFlow 3 (when released) is preferred.
Eric J.
  • 147,927
  • 63
  • 340
  • 553
6
votes
2 answers

Webflow vs. Angular or Both?

We are developing an Enterprise application with the following technology stack: Websphere Application Server Spring (Webflow (Session in View pattern), JPA (Hibernate), Core) DB2 osZ Frontend (JSP Rendering HTML5 (CSS 2.0), Ajax in combination…
Andrew
  • 61
  • 1
  • 2
1 2
3
86 87