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.
0
votes
2answers
117 views
How to make my input fields glow with dijit and dojo in a Springs Web Flow Project
I am working on a Spring Web Flow Project and I would like to use Dojo dijit css to make my input form and fields nice. I would like to make my fields glow.
The have the following on top of my JSP:
...
0
votes
0answers
67 views
How to access bean with inner bean in it with Spring Web Flow
How to access bean with inner bean in it with Spring Web Flow!
How to access Model(Bean) with Sub Models in it with Spring Web Flow. I am working on a Spring Web Flow Project and I have a Main ...
0
votes
0answers
83 views
Runtime Reloading of flows
Our requirement is to externalize the flows, do lazy loading and refresh them when required.
I have tried setting the development property to true for flow-builder-services and was able to refresh ...
0
votes
1answer
216 views
JSF 2.2 with Spring Webflow 2.3.1 components not rendered
I'm struggling a bit with migrating an application to JSF 2.2 (with Richfaces 4.0) and Spring Webflow 2.3.1
The server ( Tomcat 6/7) is starting without any error but is only displaying the jsf ...
0
votes
1answer
326 views
How to link an action from javascript with spring web flow and jsf?
I have a requirement where in from h:commandlink or a4j:commandlink using onclick event, I need to call plain javacript function (not using any javascript framework) which inturn needs to call the ...
0
votes
1answer
411 views
Why amd I getting warnings from Log4J 1.2.17?
Why amd I getting warnings from Log4J 1.2.17? I am trying to use log4j in my java project but I keep getting the following warnings. can someone please tell me why?
THE WARNINGS:
log4j:WARN ...
-1
votes
1answer
74 views
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 ...
1
vote
1answer
368 views
java.lang.NullPointerException at com.sun.faces.context.StateContext.startTrackViewModifications(StateContext.java:172)
Application got depoloyed sucessfully but when i am trying to access my first page i am getting the following exception.
jsf 2.0
swf 2.0
primefaces 2.2.1
jboss as 7.1.1 final
...
2
votes
0answers
319 views
Unsupported Exception in jsf 2.0 + springwebflow 2.0
I started to create a project using the following technologies
JSF 2.0
Springwebflow 2.0
Primefaces 2.2.1
Richfaces 3.3
Appserver : JBOSS-AS-7.1.1 Final
My application got deployed successfully, ...
0
votes
1answer
195 views
Spring Web Flow Action-State what should controller return?
Spring Web Flow Action-State what should controller return? Look at my flow below I have a action-state that based on the call to the controller i can be going to 4 diff paths..
I dont know what ...
0
votes
3answers
418 views
How do I join two tables in hibernate and Spring
How do I join two tables in hibernate and Spring. below is my suto java code and I need to do a join on objectA where the name field is equal to the name field in objectB but I am going to be ...
0
votes
3answers
255 views
How do I intercept a request in Spring AOP/Aspectj before any bean/controller is called?
I have to log the request parameters/ form data before any bean/controller method is called.
My application is written in spring web flow.
What would be the best way to implement it?
1
vote
1answer
180 views
JUnit, Spring Context and Webflow
I'm trying to configure JUnit to work with Spring, but I cannot.
My problem is that it doesn't find the webflow files, so it fails the execution.
However, this sounds strange to me, because I'm not ...
0
votes
2answers
437 views
Spring Web Flow Unit Tests: Set attribute in FlowScope without view-state
This is similar to Spring Web Flow - How can I set up unit test with values already in conversationScope?
I've used the solution listed in that question to solve a conversationScope issue, but have ...
0
votes
1answer
783 views
Spring MVC - mvc resource
I have a spring project where, on a linux/tomcat6 server we have an external folder for person photos inside "/var/projectname/personphotos". Tried making a symbolic link and the like and nothing ...
0
votes
1answer
424 views
JUnit and Spring configuration
I'm trying to configure JUnit to work with Spring, but I cannot.
I create a test class this way:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = ...
0
votes
2answers
557 views
Trying to setup a Maven Nexus Server but getting “Could not resolve dependencies”
Trying to setup a Maven Nexus Server but getting "Could not resolve dependencies" only on some of the packages.
Here is the output of my mvn package
[INFO] ...
0
votes
1answer
146 views
Action Implementation in Spring Webflow 2
I'm trying to implement a SWF action like this:
@Component(value = "initializeProjectsTestingFormAction")
public class InitializeProjectsTestingFormAction implements Action {
@Autowired
...
0
votes
0answers
307 views
Spring webflow with ajax request and rendering
I am using Spring web flow for an ajax request. The controller is returing a string which should be rendered in a jsp page. I am using AjaxUrlBasedViewResolver and tiles for rendering.
The below are ...
0
votes
1answer
85 views
Spring CSS for making input fields grow
I few weeks ago I found a great spring example with spring style sheets but I can't find them now. This example would use spring lib to make the input fields grow as the user clicked on them.
It ...
0
votes
0answers
280 views
Spring Web Flow + Jquery ajax + JSON
I am trying to call the method inside the controller through the jquery get or post.
However in the success data i am getting complete html. I am expecting the JSON object returned should be ...
0
votes
3answers
105 views
Best way for two Spring WebFlow projects to share data
I am trying to find the best way for two Spring WebFlow projects to share data. In my example lets say Web-Flow App1 gets information from the user like name, phone, ssn, etc etc and I am going to ...
0
votes
2answers
72 views
Can I build a Maven archetypes or Sample Project?
Can I build a Maven archetypes or Sample Project?... What I am looking for is that I setup project templates for other developers in my firm to you and I would like to know if somehow I can setup a ...
1
vote
2answers
650 views
Trying to run junit test on service level of Spring WebFlow Project. Assume$AssumptionViolatedException
I am trying to run my first test with junit on a Spring Web Flow Project from within Eclipse and also from the console with mvn test and but give me the same error.
java.lang.NoClassDefFoundError: ...
0
votes
2answers
108 views
Getting error trying to test service on Spring project with junit
I am trying to run my first test with junit on a Spring Web Flow Project from within Eclipse and also from the console with mvn test and but give me the same error.
...
1
vote
1answer
1k views
Primefaces commandButton: f:attribute does not work
Project uses Spring Webflow and JSF (PrimeFaces). I have a p:commandButton with f:attribute
<p:commandButton disabled="#{editGroupMode=='edit'}" action="edit_article_group" ...
1
vote
1answer
278 views
Spring Web Flow on Tomcat 6.0.35 using Eclipse Indigo
I am new to spring. I am trying to run a self-learning project called library, using spring web flow, on tomcat. As the IDE, I use Eclipse Indigo.
My project's WebContent folder structure is as ...
1
vote
1answer
293 views
access the jaxb2 marshaller in endpoint handler (spring ws)
I am using Spring-WS 1.5. I have the following configuration in my spring-servlet.xml.
<beans xmlns="http://www.springframework.org/schema/beans"
...
0
votes
1answer
391 views
Dynamic Dropdown Menu on Spring Webflow
I want to know the best way to implement dynamic dropdown menus in a Spring Webflow environment.
I have been googling for the last 3 hours and I have several ideas about how achieving it. My question ...
1
vote
0answers
260 views
How to render <form:checkboxes> in page direction instead of line direction?
I need to bind Map<Long, String> to checkboxes in a form.
Here is my code:
<form:form modelAttribute="flowForm" action="${flowExecutionUrl}">
<table style="width: 100%">
...
1
vote
2answers
175 views
serve static resource using spring 3.0.0 and tomcat
I need to expose some static content (xsd files that are required by the wsdl). I cannot use the mvn:resources since it is not available in Spring 3.0.0
I don't have an idea as to where the static ...
0
votes
0answers
149 views
Spring Webflow, File upload, creating List of POJO from CSV
I am trying to upload a csv file with employee details to my java web application, where i want to read in the lines in the csv file and create a List of EmployeeDetails from the data in the csv.
im ...
2
votes
3answers
614 views
Upgrading my Spring WebFlow projects to use Maven and Hibernate4. Now Gets NoSuchMethodException: org.hibernate.cfg.Configuration.addAnnotatedClass
I have to upgrade my projects to start using Hibernate4 and Maven for the build. I have a number of projects and this process is killing me with the error. My Projects are Spring WebFlow, MySQL, CAS ...
0
votes
4answers
225 views
Updated Spring 3.1 project to hibernate4 now getting No Session found for current thread
I had to update my Spring WebFlow project to Spring 3.1 and Hibernate 4 do to trying to get maven to work. It looks like everything is working now but at the part of the project going to do a ...
0
votes
2answers
715 views
Using Maven: Getting java.lang.ClassNotFoundException: org.springframework.web.bind.support.WebDataBinderFactory
I am trying to use maven to build my spring 3 project that was working before maven but I am getting this error:
Sep 13, 2012 11:24:50 AM org.springframework.web.context.ContextLoader ...
0
votes
3answers
540 views
Trying to get my first Maven POM setup for Spring, Spring WebFlow, Hibernate etc but having errors
Trying to get my first Maven POM setup for Spring, Spring WebFlow, Hibernate etc but having errors. I have a project that was working before I started to use Maven for the import of the JARS. Below ...
0
votes
1answer
388 views
Maven Project with Spring Webflow: ClassNotFoundException: org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean
I am trying to use Maven for the first time and I had a working project that is Spring WebFlow, MySQL and Hibernate is was working before I started with maven but I want to learn maven.. I am getting ...
0
votes
0answers
121 views
Get and process form values in Spring web flow
I am newbie in Spring webflow. I want to develop a simple apllication that takes redirects to donate.jsp on clicking DonateAmount link on home page from which donate.xml webflow starts. In there is a ...
0
votes
1answer
244 views
Redirect issue with Jasig CAS and Websphere
We currently have a set up with a load balancer carrying out SSL offloading, an http server and a websphere app server. Having got over the initial hurdle of the offloading preventing CAS from ...
0
votes
1answer
54 views
Getting Windows NT user information in a Spring WebFlow Project
I am working on a Spring WebFlow Project and the firm is asking to remove the login process and somehow just get the windows NT user from the workstation.
Does anyone know of any way to do this?
...
1
vote
1answer
516 views
spring webflow, evaluate expession ignored in transition
I have a flow definition as flows
<view-state id="view1" view="/jsp/view1.xhtml">
<transition on="login" to="view1" >
<evaluate expression="'test1'" ...
1
vote
0answers
390 views
Need help in Spring MVC + JSF2 + Webflow + RichFaces 4
Im now working on a project that require me to migrate from the existing Spring MVC + JSP/tiles to Spring MVC + JSF2 + Webflow + RichFaces 4. So far I'm had all the necessary configuration by ...
0
votes
1answer
79 views
How do I pass a new model to a view-state in Spring WebFlow2
How do I pass a new model to a view-state in Spring WebFlow2. I have a input screen where my user enters some data and then it goes back to the server to process it. If the data is ok then I have to ...
0
votes
1answer
91 views
How do I add sorting to this hibernate call in my Spring WebFlow project
How do I add sorting to this hibernate call in my Spring WebFlow project. I am working on a Spring Webflow project and I have to add sorting on the following call.
@SuppressWarnings("unchecked")
...
0
votes
1answer
2k views
Spring XML error: Could not resolve placeholder 'cas.server.host'
I am trying to setup my Spring CAS.XML file but I dont know why the file is not seeing the values I have set in the file:
Can someone please tell me what I am getting the following error:
2012-09-10 ...
0
votes
1answer
78 views
Trying to add Security to my Spring Web Flow2 Project
I have a web flow project I been working on and now its time to add some security to it. I have the login screen working for the demo but I want to add:
@PreAuthorize(isAuthenticated());
To some of ...
0
votes
1answer
281 views
Trying to setup pooling with C3P0 Pooling in Hibernate with Spring WebFlow and MySQL
I am trying to setup pooling with C3P0 Pooling in Hibernate with Spring WebFlow and MySQL but I would like to have Hibernate managed the pools and not mysql so I setup my jdbc.properties file and my ...
0
votes
1answer
166 views
trying to Configur c3p0 pooling in Hibernate using Spring WebFlow
I am Configuring the built-in c3p0 pooling in Hibernate using Spring but its giving me error it does not like any of the C3P0 stuff like:
<prop name="hibernate.c3p0.min_size" value="2" />
...
0
votes
0answers
49 views
How do I make a Spring WebFlow Project not look like one to my users
How do I make a Spring WebFlow Project not look like one to my users. I am talking about removing "?execution=e1s1" from the URL and things like that..
I want my project to be hard to tell what we ...
0
votes
2answers
233 views
How do I update data in a Spring WebFlow Model and Pass it back to the same view
How do I update data in a Spring WebFlow Model and Pass it back to the same view.
I have a project that I am working on and if the user picks a item from a selectbox I need to go back to the server ...