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

Webflow binding failure

I'm trying to add a Forgot Password path to an existing view. I created a new view, action, model bean, and some states in my webflow. Instead of seeing the view, I keep getting the error java.lang.IllegalStateException: Neither BindingResult nor…
Eric Stein
  • 13,209
  • 3
  • 37
  • 52
-1
votes
1 answer

can anyone tell me how to create RESTful web services in spring with annotations

I am new to spring RESTful web services. can anyone tell me how to create RESTful web services in spring with annotations and what all jars to be included in the project? also how do i test it whether my web service is working fine. do we have a…
-1
votes
1 answer

Spring security : HTTP Status 404 : The requested resource (/trade-web/login) is not available

I'm trying to do a spring security D/B authentication example with custom service class for authentication-provider. I'm getting HTTP 404 Status -The requested resource (/itrade-web/login) is not available. I know its because i'm able to resolve to…
coder87
  • 145
  • 1
  • 8
  • 21
-1
votes
1 answer

Spring Web Flow - Any transition keeps refreshing the flow

Spring web flow transitions not working at all. only the first view state loads. But on click of any transition states, the flow gets refreshed again and the first view is again loaded. Although, the same flow xml and same setup works fine in my…
Ruud
  • 31
  • 6
-1
votes
1 answer

Can I loop over an expression in webflow?

I am new to spring web flow. I have an list and I want an expression to be evaluated as many time as the size of the list. Sample code is- Here…
rahul0789
  • 327
  • 1
  • 3
  • 7
-1
votes
1 answer

spring web flow sub subflow-state that open the same jsp

spring web flow sub subflow-state that open the same jsp my code is: in jsp on click button: $("#formid").get(0).setAttribute('action','search-comune.htm'); $("#formid").submit(); controller: @RequestMapping("/aut/nuovo-operatore-rer") …
user1671106
  • 193
  • 1
  • 1
  • 9
-1
votes
1 answer

Spring webflow - send link to a flow by email

I'm new using Webflow and I don't know how to do that: I want to implement a recovery password flow, I'm taking the user's email, generate a random ticket and store it with hibernate. The problem is that I don't know how send an email to the user…
alexvisio
  • 3
  • 2
-1
votes
1 answer

contextConfigLocation with two files for security and for apppservlet

Hi in my MVC apllication i have two contextConfigLocation files one for security purpose named spring-security.xml the other one for servlet redirection named appServlet-servlet.xml My question is how to add both in my web.xml which is …
chillo
  • 49
  • 3
  • 11
-2
votes
1 answer

p:commandLink actionListener not invoked anymore after switching to Primefaces 7.0

I recently updated my project libraries. Primefaces 5.2 > 7.0 myFaces 2.1.13 > 2.2.12 after the update one of the s actionListener is not invoked anymore. The javascript code I have in the oncomplete is working fine, an ajax request…
Hossein
  • 1,151
  • 9
  • 19
-2
votes
1 answer

Spring webflow, spring state machine and HTML5

Read in this post about spring webflow and spring state machine https://mehmetsalgar.wordpress.com/2015/12/14/ajax-spring-web-flow-and-spring-state-machine/ For my application, I need to maintain state, need to go back and forth between the states.…
srao
  • 9
  • 1
-2
votes
1 answer

Inner UI:repeat does not bind to a bean in a nested UI:repeat

HI, I am using nested ui:repeats to display my data. the outer UI:repeat works and binds to bean just fine, but the inner does not bind to the bean. In sumary, I would like to display a list of people where each person has a name and a list of email…
Nhut Le
  • 135
  • 1
  • 6
  • 15
-3
votes
1 answer

javax.el.PropertyNotFoundException: The class 'java.lang.Integer' does not have the property '0'

I'm try show my data into JSP using JSTL, but console show me javax.el.PropertyNotFoundException: The class 'java.lang.Integer' does not have the property '0' I have a List with Integer and BigDecimal and my JSP I did put
hekomobile
  • 1,388
  • 1
  • 14
  • 35
1 2 3
86
87