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

Spring Web flow with JSF evaluation

I am new to Spring Web flow. This is my code. main-flow.xml
bharathi
  • 6,019
  • 23
  • 90
  • 152
0
votes
1 answer

How to map beans from given jar file in Spring

I have developed a Spring web application and its working fine. I have bean creation mapping structure as like : My Controller: @Controller @RequestMapping("appointmentDiary") public class AppointmentDiaryController { private…
Balasaheb
  • 625
  • 2
  • 12
  • 33
0
votes
1 answer

Grails Webflow: Access flow scope outside of action or transition states

I want to call a subflow where the controller is not known. It is passed in parameters to beginFlow and I save that in flow scope. Inside goToForm I'd like to call use the controller that is saved in flow.theController. def beginFlow = { enter…
0
votes
1 answer

grails + singleton service for object saving to database for cloud application

Here I have one service Called 'DataSaveService' which I used for Saving Objects like.. class DataSaveService { static transactional = true def saveObject(object) { if(object != null) { try { …
sanghavi7
  • 758
  • 1
  • 15
  • 38
0
votes
0 answers

Display tag prefix and spring webflow

I am working on an interface using Spring web flow. I have this [B]uebersicht.xhtml[/B]
Blanca Hdez
  • 3,513
  • 19
  • 71
  • 93
0
votes
1 answer

Why spring mvc scope variables require serialization?

Recently we faced the issue of flowscope values not being set across the flow, but later after the investigation found that all the flowscope variables should be serialized ( my mistake i did not read the line from the spring webflow documentation -…
Raj
  • 35
  • 4
0
votes
1 answer

GWT or Other Presentation Layer Technologies with Spring WebFlow/MVC Framework

First off, I've never used GWT before. I have good experience in HTML/CSS/JS/JSP. I'm looking for people's opinions on the suitability of Google Web Toolkit for a brand new web app I'm developing. A big requirement is that the UI is attractive and…
Thomas Buckley
  • 5,836
  • 19
  • 62
  • 110
0
votes
3 answers

Spring Web Flow with Hibernate

After a long google I am not able to find any Spring Web flow with hibernate sample Example.Can anyone Help me with simple Spring Web flow example.I need to create a Login Form with Spring web flow.Still now I am now familiar with the Spring web…
bharathi
  • 6,019
  • 23
  • 90
  • 152
0
votes
1 answer

HIbernate slow data loading with collections

I have a problem with a page loading of data. rich:datatable is used to display list of announcements. Announcement class include Set of AnnouncedLot class and in a mapping it is specified as
Adilya Taimussova
  • 551
  • 1
  • 6
  • 12
0
votes
1 answer

Any FileUpload replacement to work side by side with ICEfaces and Spring Web Flow?

FileUpload control from ICEfaces conflicts with Spring Web Flow 2.0. If anyone knows another FileUpload JSF control that work OK with Spring Web Flow and doesn't conflict with ICEfaces?
Lite
0
votes
2 answers

Passing a map from spring context into webflow jsp

I have a map, kinda like this defined in my spring context file. I would like to access this from my JSP inside of a webflow like this
0
votes
1 answer

Why isn't webflow updating my model object?

I'm setting up an application using Spring Webflow 2, and I'm running into a problem. The app takes in a reservation on one page and then allows for payment on another page. The reservation model object works fine; I can fill out the form, submit…
Travelsized
  • 111
  • 3
  • 11
0
votes
4 answers

Reuse Spring Webflow definitions with different action implementations

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. I want to use same flow definiton twice: second time with actions configured differently (inject…
PR
0
votes
1 answer

Spring webflow + CDI

Are Spring Webflow and CDI compatible? I'm having problems deploying the application with beans.xml(CDI) included. I'm deploying on Jboss 7.1 If I run the application including /WEB-INF/beans.xml (CDI) I have this exception…
0
votes
1 answer

Spring WebFlow - add flow XML configuration check at compile time

is there a way to check the sanity of the XML configuration at compile time ? Or at worst, at application startup ? What I mean by sanity is not only validation & well-formedness but also well-formed method names in expression attributes (not…
fbiville
  • 8,407
  • 7
  • 51
  • 79