Tagged Questions

11
votes
4answers
5k views

How to implement login page using Spring Security so that it works with Spring web flow?

I have a web application using Spring 2.5.6 and Spring Security 2.0.4. I have implemented a working login page, which authenticates the user against a web service. The authentication is done by ...
5
votes
3answers
566 views

When does it make sense to use Spring WebFlow on top of Spring MVC?

Spring MVC has become a very popular framework for building enterprise web applications. Any complex web application has certain flows that need to be coded, including some conditional flows (i.e., ...
5
votes
2answers
3k views

How to use multiple ViewResolvers in Spring?

I am working on a web app where I have most of my pages making use of apache tiles (2.1.2), but a few of them need to just be plain jsps. I am having a problem in that both an ...
4
votes
1answer
1k views

Spring Webflow Best Practice

I have a java web application which uses spring webflow as framework. I have a problem with processing data on a plain flow xml. When the processing gets more complicated I find it hard to implement ...
3
votes
1answer
158 views

Disadvantages of using JSF+Spring without webflow

in following examples of JSF Spring integration, i can see that the examples makes a normal integration between spring and JSF without using webflow, so is there are any problems or issues when using ...
2
votes
5answers
128 views

Confused about rich framework to be used with spring

my requirement is to develop rich web applications quickly and easily, and the framework must be easy/compatible with spring something like IceFaces i am confused about IceFaces/PrimeFaces, or use ...
2
votes
1answer
130 views

harmony between webflow and Spring MVC Controllers

Spring 2.5.6SEC02 Spring Webflow 2.0.9 I have a normal flow in which I have a form in flow scope. I now want to call my annotated spring MVC @Controller and get access to the form information. I ...
2
votes
2answers
457 views

Is Spring Webflow suitable for async. flows?

I've got my first impression of Spring WebFlow 2.1 from studying the reference app and reading the manual. Before going further, I would like to ask for the impression of this community. Actually, I ...
1
vote
0answers
13 views

Jquery delete spring bound row: still on request?

I'm using spring-web-flow + spring mvc. Within my spring web flow when a validation error occurs I go back to the page on which it occurred as is the default in spring web flow. The issue I'm having ...
1
vote
1answer
51 views

Spring webflow 'Property not found' exception

I am using spring webflow, this is my flow <view-state id="welcome"> <transition on="emailEntered" to="checkEmail"></transition> </view-state> <decision-state ...
1
vote
0answers
38 views

Webflow Tiles Issue

All, We have implemented spring using tiles and everything works great so far. I have 2 issues so far: 1) I however do not like the idea of defining a new definition every time a new jsp is ...
1
vote
1answer
210 views

Form Submit using a Javascript to invoke webflow transition, doesn't take the updated value on form

I am trying to invoke a form submit using javascript (jquery) to invoke a webflow transition. It works and the submit invokes the desired transition. But, the updated radio button values is not ...
1
vote
1answer
359 views

How to configure Shiro + Spring MVC when @Controller REDIRECTS to a login page

I have a typical Spring MVC + GWT architecture with Apache Shiro as a security layer. Problem: No matter what protocol is used for a request to the App server, pages should be returned in the ...
1
vote
1answer
158 views

Spring webflow - mvc controller as subflow

Is there a way of using spring MVC contollers as subflows in spring webflow? I have some data browsers written as plain MVC controllers and I would like to use them in my flows to browse/select ...
1
vote
2answers
155 views

AbstractWizardFormController OR Spring webflow

What is the difference in using AbstractWizardFormController OR Spring Webflow. How should one decide which one to use in a given scenario. EDIT: Is there any benefit of using one over the other?? ...
1
vote
1answer
307 views

Spring webflow: how to keep track of persisted entity ids?

I'm working on a webflow (SWF2). The entities are generated using Roo. One of the webflow views, multi-instance.jspx, may be called multiple times to allow for multiple, persisted instances of the ...
1
vote
1answer
453 views

Spring WebFlow: POST from flow to MVC Controller

I have MVC Controller as below and mapped /home to that controller. To redirect to /home from flow i use externalRedirect:contextRelative:/home in view attribute. Is possible to pass some data to ...
1
vote
1answer
417 views

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. <servlet-mapping> ...
1
vote
1answer
454 views

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 ...
1
vote
1answer
310 views

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 ...
1
vote
1answer
447 views

How to call server side action method just before submitting form to 3rd party url?

Ok, I'm using Spring Webflow and I currently have a flow that involves two jsp pages (views), the second of which submits a form to a 3rd party system (payments). In my pay-flow.xml I have states ...
1
vote
1answer
300 views

Is Spring ever going to combine MVC and WebFlow?

I thought I read Juergen Holler somewhere once in the past say that a future goal of Spring was to combine Spring MVC and WebFlow... Is this still the case? At the moment they still seem to be ...
1
vote
3answers
933 views

In Spring Webflow unit test, how do you assert that a view state has a view of a given name?

I'm developing a Spring webflow, trying to use TDD so I've extended AbstractXmlFlowExecutionTests. I can't see an obvious way to assert what I would have thought would be a simple thing: that a view ...
0
votes
1answer
27 views

How to dynamically take the value using Spring?

I have a form along with a add new row button. Each row consist of different fields. Now I have already defined an ArrayList of the above fields in the command bean. My problem is that how can I ...
0
votes
2answers
119 views

HttpServletRequest to MultipartHttpServletRequest: ClassCastException

I want to cast httpServletRequest to multipartHttpServletRequest. When I try this, a ClassCastException occurs. MultipartHttpServletRequest request = (MultipartHttpServletRequest)req; This error ...
0
votes
3answers
101 views

Error Tomcat when deploy project war

I have a problem when I deployed file war in tomcat6 on my Server CentOS. I used CentOS 5.x Tomcat version6 Java version ( I use javasun ) java version "1.6.0_30" Java(TM) SE Runtime ...
0
votes
1answer
142 views

Spring Web Flow config for SpringFramework 3.0 or alternatives?

I would like to know, whether spring web flow supports springframework 3 release. According to the official documentation ...
0
votes
0answers
36 views

Spring 3 MVC error while deploying

While deploying to google app engine..my test spring 3 mvc app throws up the below error. org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to ...
0
votes
0answers
147 views

“Can't find bundle for base name” when using Date validator on spring web flow

i have inherited an existing spring (full stack) Project, and have been scratching my head for a few days on an error, i have failed in my google-fu and am now asking here i add a new datae field ...
0
votes
1answer
152 views

Spring iceFaces integration questions

i intend to use IceFaces with spring framework and i have some questions, before going to this process: Is it possible to use it with spring-mvc ? If it's possible to use it with spring-mvc, what's ...
0
votes
2answers
73 views

Choosing Presentation layer for spring application?

i was using JSP and YUI with spring applications and i want to use a new presentation layer like IceFaces or GWT or any other good one but i am confused what to choose i need to make a good looking ...
0
votes
0answers
39 views

How to use customized spring Editor in view phase(setUpForm and jsp)?

I am using spring-webflow 1.1. My form object contains Date.class. So I add correct editor public class FrontPageEditor extends FormAction { @Override protected void ...
0
votes
2answers
432 views

Spring Web Flow Passing Model Object from Flow to Controller

What is the proper way to pass a model object used in Spring Web Flow to a Controller? My use case is as follows: I have a flow and the end state displays a model object that contains some ...
0
votes
1answer
291 views

Spring WebFlow Configuration problem with Validator

I am using webflow for the first time and I am trying to set up JSR-303 Bean Validation. According to the documentation: ...
0
votes
1answer
267 views

Persisted entites in an ArrayList gone missing in jspx using Spring Webflow 2.0

I'm writing a spring webflow with MVC and persistence scaffolded by Spring Roo. In this flow, the user is supposed to be creating multiple instances of one entity, which in turn is to be referenced ...
0
votes
1answer
141 views

Why my spring webflow can't forward or backward?

I am using spirng mvc 3.0.4 and webflow 2.2.1, I config my webflow like the following: <view-state id="createTaskDetail" model="task" view="task/createTaskDetail"> <transition ...
0
votes
2answers
792 views

Accessing proper resource bundle in Spring Framework

I am trying to access a resource bundle using Spring framework (WebFlow). A messages.properties file and accordingly messages_ar_AE.properties file are kept in the classpath from where the Spring ...
0
votes
2answers
3k views

Resource Handler problems with JSF2 + Richfaces4 + SpringMVC + WebFlow (SWF)

I've been trying to get the above mentioned setup working for days now with minimal success. My issues appears to be with the resource handler. Ie. <h:outputStylesheet name="header.css" ...
0
votes
1answer
142 views

Validate input field to display another input field on the same page

using spring 3.0 I have page on web flow which has a password input field once the user finishes entering password i need to validate the password if it is right then display email id input field on ...
0
votes
2answers
2k views

Cannot locate BeanDefinitionParser for element [executor]

I m new to spring and m just trying on my hands using spring MVC 2.0 and spring webflow 1.0. but i m getting following error might be when dispatcher deligate request to flow... Configuration ...
0
votes
1answer
832 views

Servlet Dispatcher throwing exception

I have a simple Spring web flow application created. When the application starts, I get the following error on my Tomcat server: SEVERE: Servlet.service() for servlet dispatcher threw exception ...
0
votes
2answers
979 views

Spring MVC with Webflow or Struts 2?

I am starting a new project and must decide between the two. The team has no experience in either. Both seem to have similar functionality. If you have experience in either technology, or both, I ...
0
votes
1answer
565 views

Passing parameters from trinidad controls to the flow

I am new to JSF, Facelets, SWF and Trinidad technologies, and I having a problem submitting parameters from the <tr:commandButton> on a xhtml page to the flow (using the <f:param>). The ...
0
votes
2answers
2k views

How do I write a custom converter in Spring Web Flow 2?

I am using Web Flow 2.0.7 with Spring MVC and Hibernate. My problem is about custom converters for my custom types and database connection from within my converter. Let's say I have a type Person ...