The Web Flow module is a Spring MVC extension that allows you to define Controllers using a domain-specific-language. This language is designed to model user interactions that require several requests into the server to complete, or may be invoked from different contexts.

learn more… | top users | synonyms

0
votes
0answers
16 views

Jboss as7,jsf2,cdi,springwebflow fileNotFoundException

Hello, i'm working on a web application using JSF2,primefaces 3.4.2,springwebflow 2.3.1,CDI,jpa and activiti 5.9 as a process engine (workflow) : before integrating the workflow part(activiti and it's ...
0
votes
1answer
21 views

Grails end of WebFlow redirecting with params to the gsp

The end of my webflow has a redirect: finished { redirect( controller: 'user', action: 'example1' params: [ author : "Franky" ]) } The redirect does work and the URL does contain ...
0
votes
1answer
31 views

How do I do a JQuery, Ajex call to a Spring Web Flow Event?

How can I do a JQuery Ajax call to a Spring Web Flow Event changing the eventId to 'loadSchools'? Here is my jquery code: <script type="text/javascript"> $(document).ready(function () { ...
0
votes
0answers
19 views

Ajax post using JQuery in Spring webflow project

I am working on a spring webflow project what was using Spring.AjexEventDecoration but the firm is requesting for it all to be remove and to use JQuery for the java-script part. I had the following ...
0
votes
0answers
29 views

sendRedirect() at first logging

I have the following problem, I'm developing an app which was developed with Spring Webflow 2.3.1. This app has a main flow with the main menu and the subflows to go to different pages. But now the ...
-2
votes
0answers
26 views

@Transactional annotation - no transaction

I spent a lot of time on resolving problem with transactions started by @Transactional annotation but I can't find way how to start and commit transaction. Mabye I don't understande Spring ...
-2
votes
0answers
20 views

Creating new external web module into existing java project [closed]

I am working on a java (Spring) web project and I want to create a new external web module into existing web project and that module will not be included in the war file for web project for production ...
1
vote
2answers
59 views

Spring webflow serialization trouble in production

I have a grails app doing some stuff in the right way with webflow. So everything goes right in development mode, i can finish the registration and objects are serialized normally. But then, in ...
0
votes
0answers
12 views

how to put info to the form after getting then from the databse in jsf and webflow

I am using webflow and jsf. when I click the link, I want to get url of the form from the database and put it for my form and get nqPassword from the databse and put it to the form. Then a new window ...
0
votes
1answer
29 views

how to open a page in a new window in jsf with webflow after using evaluate

in jsf with webflow, I need to use a link and when I click the link a new window should be appear but the url of the link is not static I have to reade it from the database and prepare it then use it ...
1
vote
1answer
103 views

example booking faces intercept-url pattern=“/secure”

I have an question relate with the example booking-faces, with the parameter in spring security intercept-url pattern="/secure" what's is mapping?, where is /secure configured. thnks.
0
votes
0answers
21 views

Using Spring Web-flow and trying to use Spring AjaxEventDecoration to kick off transitions

I am using Spring Web-flow and trying to use Spring AjaxEventDecoration to kick off transitions. but something is going on that this code is not running <tr> ...
0
votes
0answers
27 views

Pass values from servlet context to context of spring webflow

I want to pass username/password from servlet context to context of Sprint webflow. I have got username/password in servlet. I tried saving these values in session. From Context of Sprint webflow, i ...
0
votes
2answers
31 views

Spring WebFlow - cancel request

The scenario is this: a have some view-states. when an object in my conversationScope is in a certain state (e.g. not null) i want to prevent that the user can go back. by going back i mean: ether ...
0
votes
1answer
18 views

How to find which pages do I pass in spring webflow

I am using spring webflow. I have a main page that is called "X" and I want to create a log record for which pages is passed by the users untill reaching my main pages that is "X". My question is how ...
0
votes
1answer
34 views

How to get custom User object from AuthenticationFailureBadCredentialsEvent / AuthenticationSuccessEvent object

I'm trying to show no of invalid attempts of user using spring security.I'm using a custom User class to get additional user details other than username and password. I've created two listener classes ...
0
votes
1answer
33 views

Spring web-flow with JSF ClassNotFoundException issue

I am working on a project using Spring Webflow and JSF. I am trying to accomplish something similar to the booking-faces example of Spring Webflow ...
0
votes
1answer
24 views

In Spring WebFlow, is it possible to continue the same flow after calling an external service?

One of my subflows need extra information from a service provider page, I will redirect the user to that page to insert his information and then return back to the same place he was in the flow. The ...
3
votes
1answer
66 views

How Does Spring MVC handle responses

I use Spring MVC and webflow. There are time where I am obliged to write to the response object directly. Specifically I have a keep-alive class that continuously sends an empty response back to the ...
0
votes
1answer
28 views

How to handle different locale value in spring 3.0 webflow

I want to handle the different locale value, based on that I should display the error messages in jsp pages how to handle different locale value in spring webflow with jsp ? Below code snippet is, ...
1
vote
1answer
53 views

Spring webflow URI mapping to flow ID containing slash (“/”)

We have a requirement to handle login and signup slightly differently within a subsection of our website. We need separate flows for each of the following URIs. /login /signup /subsection/login ...
0
votes
2answers
68 views

I want to change the home page menu depending on the login user. How do i do it in Spring MVC?

I am able to log-in using Spring-MVC. Now i would like to change the menu's depending upon the user who logged in. How do i pass login-username to my home page using spring MVC Controller? So that i ...
0
votes
1answer
45 views

Spring Web Flow Samples

I am trying to use Spring Web Flow for the first time and am following this link: https://github.com/SpringSource/spring-webflow-samples . I tried to do both ways as mentioned in the ReadMe.md. Here ...
0
votes
1answer
219 views

Spring security: Redirect after successful authentication based on a drop-down value in the login form

I'm not getting selected drop down values from front-end when i use 'commandName' attribute along with spring security, as the LoginModel fields (strLogintype,strUserType)become 'null' when i get it ...
0
votes
0answers
48 views

Webflow: it's possible to switch between flows?

I have two controllers and each one have a flow. In my menu I have a link to the flows. If I'm in flow #1 and click in the link of the flow #2, Grails will show me the view of the flow #1. The only ...
0
votes
0answers
39 views

Spring 3 Webflow with JSF 2 links with _eventId not transitioning

I have gotten h:commandButton and h:commandLink to work, but the simple h:outputLink will not. I am trying JSF 2 (with facelets) code below: <h:outputLink ...
0
votes
1answer
107 views

Session variables, int and Object types within Spring Web Flow

I'm going to save my entity ID into the session in one of action states: <on-exit> <evaluate expression="persistantService.saveOrUpdate(flowScope.entity)"/> <evaluate ...
0
votes
0answers
41 views

dijit.form.DateTextBox is not visible when the page is loaded

When my page is loaded I cannot see calendar: When I click on the birthday field of the form it appears, but it does not look as I expect: The code I use to display in jsp file: <label ...
0
votes
1answer
60 views

Terminate actual spring web flow execution

is it possible to determine the actual running flow in a spring mvc context and terminate it ? The reason why I'm asking is, that in my shop web app the whole checkout process is a web flow but the ...
0
votes
0answers
67 views

LazyInitializationException in Spring webflow

I've succesfully managed to get OpenSessionInView working with Spring MVC and Hibernate and everything is working fine, but it seems that my webflows don't get any open session while rendering their ...
1
vote
2answers
89 views

How to structure models, beans, controllers, and views for a different jsp pages but reside in to one table in a database?

This is a new project we are doing using Spring MVC 2.5, jsp , Java7, Ajax, and HTML5. On my part I am going to have have 7-10 jsp pages which contain one form each.These pages are sequential. i.e One ...
0
votes
0answers
58 views

Required Some Best practices to detect the locale of a user using jsf2 + spring web flow

I am just trying to figure out some good approches to detect the locale. The approach I am following is : 1-One language Bean with the below code <code> ...
0
votes
0answers
51 views

Spring Webflow: logout

I am using Webflow 2.3.0.RELEASE and Spring 3.1.2.RELEASE with Spring security and Freemarker. It all works well except that when I logout the session is not destroyed. e.g. when I click the logout ...
0
votes
1answer
33 views

How to change webflow variable on key pressed?

I have flowScope variable in Spring WebFlow. I want to change it by pressing particular key from keyboard. So i need some ability to change it. I think about rich:hotkey, but what can be the function? ...
0
votes
1answer
37 views

JUEL set up doesn't work

I tried two ways to implement this. Specs: MyFaces 2.1.7 javax.el 2.1.0 WebFlow 2.3.1 Spring Framework (OSGI) First, added the dependency. <dependency> ...
0
votes
1answer
54 views

Can't change spring webflow state if jsf client side validation fails

I have a simple form for creating a record - it has some fields which are required and two buttons, one for submit and one for cancel. The problem is that cancel button is not working (it actually ...
0
votes
0answers
384 views

Spring security:How to map j_spring_security_check in controller?

I'm trying to integrate spring security into existing code base which is in spring mvc. In my existing code base i v'e a client delegate in web project which interacts with service delegate in ...
0
votes
0answers
58 views

cannot convert from StandardServletEnvironment to MvcEnvironment in Springs

I am running one of the sample spring webflow example . At runtime I am getting the error as org.springframework.beans.factory.BeanCreationException: Error creating bean with name ...
0
votes
0answers
39 views

spring-webflow currentUser ROLE

In my java code if I want to check if the current user is admin I am doing : if(SecurityContextHolder.getContext().getAuthentication().getAuthorities().contains(new SimpleGrantedAuthority("ADMIN"))) ...
0
votes
1answer
121 views

Performance issue in function restoreView (JSF Lifecycle)

Our application is having issue with rendering time on various part. We have been able to pin point the performance issue with a profiler (YourKit Java Profiler) within the JSF restoreView phase ...
0
votes
1answer
63 views

Spring Webflow - Forms - maintaing form values between back/next

I have a spring webflow app which is a form wizard - made up of 3 steps (each a seperate jsp). I am using a form backing object to update the values of an object on pages 1 & 2 of my wizard. ...
0
votes
0answers
13 views

WebFlowTestCase registerFlow() multiple flows possible?

Hi I have a WebFlowTestCase and is working fine but I ran into a prob when I need to test another flow that is in the same controller ( groovy). The is what my controller looks like: class ...
1
vote
0answers
99 views

Formatting bound date field in Spring Web Flow

I'm having a problem formatting the contents of a bound Date field in a spring webflow form. The validation end of things is working, and correctly enforces the date format specified in my ...
0
votes
2answers
57 views

Does request paramters retain values through out lifecycle of a spring web flow

At this link:http://forum.springsource.org/showthread.php?16393-Difference-between-Spring-MVC-Web-Framework-and-Web-Flow it says: a webflow is "longer than a request but shorter than a session." Does ...
0
votes
1answer
141 views

When to use spring web flow over spring mvc

Is it fair to say that the most important justification to use Spring Webflow over Spring MVC is this: Using Spring MVC, the different stages of the workflow needs to be in code. i.e. If Stage 1 ends ...
0
votes
0answers
29 views

BadlyFormattedFlowExecutionKeyException in grails webflow

I'm getting grails "BadlyFormattedFlowExecutionKeyException" exception when I change the execution param value in address bar!! Does anyone know how to handle such Exceptions? Cheers!
0
votes
0answers
108 views

Why do I have to make an AJAX request twice to dispaly primefaces <p:dataTable when using <p:columns in it?

I'm using a primefaces with to display a dynamic set of columns, like this : <p:dataTable value="#{queryResults}" var="row" style="margin-top:15px;"> <p:columns ...
0
votes
1answer
35 views

Spring Roo Authority Levels

I have a simple web app i am testing out. It has two levels i.e admin and normal user. The project also has three entities. What i am trying to achieve is an instance where a user cannot delete any ...
0
votes
0answers
61 views

How to validate select in spring dojo

I have a form with a dropdown with dojo decorations applied to it. When I submit the form without selecting anything in the dropdown I don't get any alert or required message that the form is being ...
0
votes
1answer
50 views

Email notifications in Spring Roo

I have a web app I am working on which has admin and basic user levels. There are three entities on the admin level and the basic user is allowed to view or alter just two levels. I would like an ...

1 2 3 4 5 14