Tagged Questions

7
votes
4answers
2k views

Can i use Spring on GAE?

Can i use Spring Webflow/MVC and Spring Security and Hibernate on Google App Engine? Is there a list/summary of java frameworks that can be used on the GAE?
6
votes
1answer
179 views

How can I define a custom message source for a spring web flow?

The spring webflow documentation mentions that their way of adding messages to a flow is to define all messages regarding that flow in a file messages.properties inside the flow: Internationalized ...
6
votes
2answers
231 views

Validate to see if form has changed

I am writing a validator which needs to test if a spring form object has changed. In the validator if no changes have been made to the form, an error should be displayed. Is there a spring mechanism ...
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
567 views

Spring Web Flow 3 Development Abandoned?

Does anyone have any information on Spring Web Flow 3 status? Here are a few relevant links that support my sense that springsource has essentially abandoned the project: 1)Official roadmap ...
4
votes
1answer
356 views

Unable to locate Spring NamespaceHandler for element 'flow'

I am developing a spring webflow (2.0.7) project using SpringSource Tool Suite. I am trying to setup a basic flow. My someflow.xml looks like this: <flow ...
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 ...
4
votes
3answers
6k views

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 ...
3
votes
1answer
160 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 ...
3
votes
2answers
1k views

Benefits to using Spring EL over OGNL?

I was wondering what exactly moved Spring to use Spring EL over OGNL in its web flow product: ...
3
votes
1answer
3k views

How do I pass model data beween a view state and action state in Spring Web Flow 2

In the Web Flow below I bind form data to a flow variable (lifeCycleForm) on a submit event in the view state. I have verified that the name, label and description properties are all populated as ...
2
votes
1answer
81 views

Spring Webflow binding: Converter - java.lang.IllegalArgumentException: Each converter object must implement one of the Converter … interfaces

I have the following code in one of the Spring's XML config files: <mvc:annotation-driven conversion-service="conversionService" /> <bean id="conversionService" ...
2
votes
1answer
58 views

Spring WebFlow - NullPointerException in setter method - how to handle nicely

Is there a magic value to place in messages.properties to capture the error condition where a NullPointerException is thrown during a setter method, In the same way there is ...
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
410 views

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, ...
2
votes
2answers
1k views

java.lang.UnsupportedOperationException at javax.faces.context.FacesContext.isReleased(FacesContext.java:609)

I am integrating SWF 2.2.1,Primefaces 2.2.1,JSF 2,Spring Security 3,Spring 3.1.0M1. I am able to hit my first page mentioned in Spring web-flow xml, but getting following error. ...
2
votes
1answer
1k views

Spring Web Flow and Url Rewrite Filter - cleaning URLs

I'm working on Spring MVC + Web Flow web application. I have mapped /home to MVC Controller and /test to Flow Controller. To remove /app from URLs i'm trying to use Url Rewrite Filter. Mappings in ...
2
votes
3answers
613 views

Variable lookup parameter for resourceBundle?

I'm currently using the resourceBundle variable to get text values in my JSF code e.g. like this: <h:outputText value="#{resourceBundle.welcomeMessage}" /> Is there any way, to put the ...
2
votes
2answers
459 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 ...
2
votes
1answer
3k views

how do I register a custom conversion Service in spring 3 / webflow 2?

I've been trying to follow this example and using the reference to guide me, but I'm having no luck. I've defined a converter: import org.springframework.binding.convert.converters.StringToObject; ...
2
votes
1answer
315 views

Can Spring Webflow define beans within flow.xml definitions?

I'm defining a lot of flows and each of my flows has a lot of actions within its states. The namespace seems to be getting fairly crowded now, so I'm wondering if it's possible to define the spring ...
2
votes
2answers
2k views

Spring webflow : Move through view states

Within a spring webflow, i need to implement a navigation bar that will allow to "step back" or resume the flow to one of the previous view. For example : View 1 = login View 2 = My informations ...
1
vote
0answers
11 views

How can I access JSF ResourceBundle from Spring Webflow expression?

I'm trying to come up with a clean way of having a String resource bundle for my application, that contains my JSF labels etc and my messages and errors. What I have is a 'Create Element' page that ...
1
vote
1answer
52 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
109 views

updating an object in spring webflow not showing up on the UI

I'm really getting confused because I'm pretty new to this whole topic. I'm currently developing a project using spring webflow. In my webinterface a user has to type in a username that is than ...
1
vote
0answers
96 views

java.lang.UnsupportedOperationException: Implement SWF integration when using <ice:form>

i was defining menubar as follows: <ice:menuItem value="menuItem" style="float:right" ></ice:menuItem> <ice:menuItem value="menuItem2" style="float:right" ...
1
vote
1answer
211 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
168 views

How to use annotation to replace mvc:resources namespace

I am building a project using annotation to do the configuration job. And when I doing this, I cannot find a way to use annotation to replace mvc:resources namespace tag. I can provide an example ...
1
vote
1answer
181 views

Error JSF 2.1.at org.apache.myfaces.view.facelets.compiler.TagLibraryConfig$LibraryHandler.endElement

I have a error when run my myfaces(JSF 2.1), richfaces 4, 2.3.0.BUILD-SNAPSHOT, in Jboss 7.0.2 "Arc": 11:50:33,556 SEVERE [org.apache.myfaces.view.facelets.compiler.TagLibraryConfig] ...
1
vote
1answer
133 views

Eclipse: Autocompletion for Spring beans in Spring WebFlow?

I am using Spring Web Flow 1.0 and Spring 2.0 (beans are defined in XMLs). In eclipse (Indigo 3.7), I'd like to enable autocompletion for my beans when writing web flows. I am already using Spring ...
1
vote
1answer
615 views

Spring 3 JSF 2 integration example needed

i want to Integrate Spring 3, Web Flow 2, JSF 2 together and i need you to recommend me a good tutorial or example, thanks in advance. UPDATE: i used following example, and it worked fine with me ...
1
vote
0answers
69 views

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

Accessing Spring WebFlow EL variables from Javascript

I try to find a way to access SWF special EL variables, such as a flowScope, and a custom variables, set in custom-flow.xml, from the Javascript. But I haven't find solution yet. I am using Sping ...
1
vote
1answer
439 views

Spring/Webflow problem with validation

Problem with validation I would have run the validation when the method "registered" In webflow: ... <transition on="registered" to="registeredAction" bind="true" validate="true" /> ... My ...
1
vote
2answers
156 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
2answers
458 views

Question about solution

I have two flows configured in the following way: <?xml version="1.0" encoding="UTF-8"?> <flow xmlns="http://www.springframework.org/schema/webflow" ...
1
vote
1answer
357 views

url encoded character gets parsed wrongly by webflow/EL/JSF

when I submit the character Ö from a webpage the backend recieves Ã. The webpage is part of a Spring Webflow/JSF1.2/Facelets application. When I inspect the POST with firebug I see: Content-Type: ...
1
vote
1answer
739 views

Spring MVC vs Spring WebFlow

I am doing some research for some social network project which i am going to start. I used Spring before yet i cant make a decision at the moment since there are way too many options to choose. I ...
1
vote
1answer
314 views

Design decision: spring webflow transitions vs JSF action handlers

Here in our application we are using Spring webflow 2.0.x and JSF1.2. Please clarify me when to go for webflow transitions and when to go for JSF beans. for example in a single page we are having ...
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
959 views

How to configure spring webflow with jsf 2.0?

I have a problem integration JSF2.0 as a view technology to spring webflow. I managed to get it "almost" working, the only thing left is configuring ajax support for JSF2.0. Ajax requests are sent, ...
1
vote
2answers
178 views

Spring Web Flow without the “Web”

Is it feasible to use the workflow engine from Spring Web Flow without any of the Web-related infrastructure? Specifically, I want to consume Spring Web Flow from my code without having to touch any ...
1
vote
0answers
627 views

Refresh view with Spring WebFlow transition

I'm trying to add localisation to my web app which is built with Spring WebFlow and facelets. I want to add support for english and french. I've created my two messages_fr.properties and ...
1
vote
1answer
305 views

<h:selectBooleanCheckbox doesnt retrive values on Server

I am using JSF along with RichFaces and Spring Webflow. I am trying to select rows from the data table using and perform some operation on the server side on the selected row. How ever I am facing ...
1
vote
1answer
729 views

Inheritance and subflows with Spring WebFlow in grails

Spring WebFlow supports some advanced reuse features like flow inheritance and subflows. Using this features in SWF xml definitions is pretty easy, for example: <flow parent="parent"> ...
1
vote
2answers
2k views

c:foreach using List: Must evaluate to a Collection, Map, Array, or null

So I'm trying to loop over a List<MyClass> for display in the view of my spring webflow application. However I get the error Must evaluate to a Collection, Map, Array, or null. <c:forEach ...
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
934 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 ...
1
vote
1answer
4k views

How do I redirect to an ftp:// url with Spring Webflow?

I'm trying to use Spring WebFlow to redirect to a computed url to an ftp server, but in the ExternalRedirect code are the following lines: } else if (location.startsWith("http://") || ...

1 2 3