Tagged Questions
-2
votes
0answers
18 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 ...
0
votes
1answer
17 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 ...
3
votes
1answer
62 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 ...
1
vote
1answer
45 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
1answer
90 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 ...
1
vote
0answers
88 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
0answers
136 views
getMessage() with arguments doesn't work
In Spring I'm implementing my own ReloadableResourceBundleMessageSource and I'm overriding the method resolveCodeWithoutArguments() to manage the missing keys at the HTML layer. That works very well, ...
-1
votes
1answer
178 views
How to implement Switch/if else if statement in spring webflow?
Have implemented switch statement as below.
Could you please verify and correct it if there is any wrong?
<set name="flowScope.Valid" value="true">
<decision-state id="isDNCheckNotRequired" ...
7
votes
3answers
119 views
Simple Variable in Web Flow
I've different view-state's in flow.xml. All of theses states have the same view. Now i want to set a variable which includes just a String und call it in the view-file to customize the content.
Here ...
0
votes
1answer
128 views
Spring web flow: How to return an Event object with custom attributes and then access it in flow.xml
Here's a snippet that gets called from Spring action state.
public Event doSomething(){
/* do something */
// (1) How to create a instance of this and set custom attributes?
...
0
votes
0answers
116 views
gemini blueprint spring web flow not serializable exception
I am developing an application on VTS 3.6.0, Spring Framework 3.1.4, Spring Web Flow 2.3.0 and Gemini blueprint 1.0.2. When I try load my webpage, I almost every time got this Exception.
As I ...
1
vote
1answer
113 views
Spring Webflow 2.3 Testing: How to mock @Autowired fields of a flow variable
There are clear guidelines for mocking Spring Beans used within a Spring Webflow flow. Flows can implicitly refer to Spring Beans from flows by default and AbstractXmlFlowExecutionTests base test ...
3
votes
2answers
115 views
Why Set doesnt work in web flow and Primefaces
I get call in a flow a method which returns a HashSet of Person back. Then i call the Set in my xhtml file with the Primeface-dataTable. Now i want to display the prename of the person, but a error ...
0
votes
1answer
87 views
Store bean instance in Spring
I have an authenticating method in my web application, which gets a http parameter from another application. I load my user from the database and store it in a spring bean. In my login controller it ...
1
vote
1answer
41 views
Problems scaling SpringWebFlow application on heroku
So here is my problem. I'm developing a SpringWebFlow based application on Heroku cloud and I seem to be missing something.
The app runs well on a single dyno, but when I scale it up to use multiple ...
1
vote
0answers
66 views
sending a request from a view
my application has fileUpload functionality, right now
when user submits, it opens an excel sheet (Jasper reports) but it never says whether it is success or not. And once we close or save the ...
0
votes
2answers
346 views
Global Exception handing with Spring WebFlow Flow
Global Exception handing with Spring WebFlow Flow.
I am working in a Spring webflow project and I would like to know if anyone knows how to add sometype of global exception handing in the flow so if ...
0
votes
1answer
208 views
Spring Webflow Exception-Handler for Action-State
I created a Spring Webflow exception-handler for my application and defined it in my abstract parent flow.
In this handler I add FacesMessages to display several errors in a generic way.
Now i got the ...
0
votes
0answers
88 views
Spring Invalid MIME-type in request throws java.lang.IllegalArgumentException
I am receving this error when passing a wrong http header in the http request. I am doing this wantedly as part of the negative testing and passing for example "abcd" instead of mimetype/subtype and ...
2
votes
2answers
283 views
Spring Web Flow - Multiple forms on page - validating correct form
I am using Spring Web Flow 2.3 and I have a page that has two forms on it that transition to different places depending on which is submitted. To accomplish this, I have one composite model object for ...
0
votes
0answers
42 views
How to write junit for evaluations in <on-render> tag in spring webflow 2?
How can I write the junit for the below webflow:
<view-state id="Mydetails" view="checkdetails" model="customerBean">
<on-entry>
<set name="flowScope.site" ...
0
votes
1answer
123 views
Having problems with Spring webflow
I am trying to add a on-render element to this XML:
<var name="someVariable" class="com.example.test"/>
<view-state id="frontpage" view="test/test">
<binder>
...
1
vote
1answer
114 views
Invalidating or discarding history is not working after state validation in Spring Web Flow 2
I've configured the backtracking in my flow in the following way:
<view-state id="step1" model="step1Model" >
<transition on="next" to="step2" history="invalidate">
</transition>
...
0
votes
2answers
133 views
webflow evaluate expression doesn't call method
in the flow:
<action-state id="create">
<evaluate expression="operatore_rer" result="flowScope.operatore_rer" />
<evaluate expression="mainService.getComuni()" ...
0
votes
0answers
63 views
spring web flow tranisiton on-to
following is my flow,
<view-state id="fileUpload" view="FileUpload" redirect="false" popup="false" model="scanDataHolder">
<on-render>
<evaluate ...
0
votes
2answers
118 views
Order of rendering when using composite components with WebFlow
When using Web Flow (2.3.1.RELEASE) in combination with JSF, I have a rendering problem when using a composite component of any kind and e.g. an <h:outputLabel /> component on 1 page after ...
0
votes
0answers
60 views
Prototype reference inside a Singleton
I am currently working a web application which uses spring.. I have come across the famous problem of Prototype reference inside a Singleton.
Let me explain with an example:
@Component
...
0
votes
2answers
26 views
Spring Web Flows - getInteger() vs getRequiredInteger()
I got a quick question about the differences between the methods getInteger() and getRequiredInteger().
public void foo(RequestContext requestContext){
MutableAttributeMap flowScope = ...
0
votes
0answers
87 views
How to evaluate a collection size(Set) in evaluate expression in spring webflow
My flow file has view state as below:
<view-state id="shopstate">
<on-entry>
<evaluate expression="MyShop.getProducts.size()" result="flowScope.noOfProducts"/>
</on-entry>
...
0
votes
0answers
219 views
Java Web Frameworks for Shopping cart Software [closed]
Supermarket/Shopping cart Software Java Frameworks
I'm considering develop an online supermarket platform in Java, after a bit of research I found x-cart and Prestashop, but both are in PHP.
Since I ...
1
vote
1answer
94 views
How to make a select box on a form using Spring
I am new to Java and the Springs framework. Here is my question as formulated by a n00b (sorry if I sound like a second grader). I am trying to get a select drop down to appear on my form with a list ...
2
votes
1answer
122 views
Calling flowRedirect after returning from subflow throws exception
<subflow-state id="callingSubflow" subflow="cz/fe/ui">
<transition on="finish" to="goToResult"/>
</subflow-state>
<end-state id="goToResult" ...
0
votes
1answer
75 views
spring web flow builder services: when does one need it?
I have read that spring flow builder services are used to "customize" a web flow. Now my question: When does one need to customize a web flow? Could somebody give me a concrete example?
Regards and ...
0
votes
0answers
81 views
Spring WebFlow Project Accessing LDAP for User Data, CAS for Authentication and LDAP for Authorities
I am working on a Spring Web flow Project that is using CAS for Authentication, plus single-sign-on and Spring Security Access LDAP for Authorities.
My firm is now rethinking the Architecture and ...
1
vote
0answers
158 views
Include spring webflow controller in a jsp
Bit of a background:
We have an existing spring webflow that we want to have ajaxified so that the page can be displayed
in a "lightbox" (at a different URL) where the user can interact with the ...
2
votes
1answer
199 views
How to add REST channel to Spring Webflow Application?
I've downloaded Spring Webflow sources and I wanted to add REST channel (displaying the image from database) to the jsf-booking sample. This channel was working without problem in my Spring-MVC sample ...
2
votes
1answer
108 views
Spring WebFlow configuration - how to find line that triggers exception?
I'm learning Spring WebFlow and I'm modifying the flow configuration. I've got the long stack trace (below), from which I've understood, that the reason of the exception is wrong EL expression ...
0
votes
1answer
398 views
How to make Primefaces graphicImage work with Spring Web Flow
com.I have SWF app where user uploads image, and that image has to be displayed in the next flow state. The flow uses conversation-scoped bean (actually a JPA entity) that stores all user-entered ...
4
votes
2answers
229 views
How to implement a complex page flow in a Java Web application
I am trying to implement a reasonably complex page flow (100+ pages) as a traditional web application. I found a few options, but none of them are 100% convincing
Hand code the flow into the ...
2
votes
1answer
693 views
What is setting Cache-Control no-cache, no-store in my deployment?
I have an issue that my application deployment always returns response headers with:
Cache-Control: no-cache
Cache-Control: no-store
Expires:Thu, 01 Jan 1970 00:00:00 GMT
Pragma:no-cache
I'm ...
1
vote
1answer
75 views
Conversational flow application implementation
Does spring web flow used widely in industry for a conversational flow behavioral application or a wizard kind of application. The main purpose of going such application is to reduced the data we need ...
0
votes
1answer
525 views
Spring webflow externalRedirect restarting same flow
I am using CAS and just updated to 3.5.1 from 3.4.8. There have been a thousand changes that I think I have handled most of. However, the externalRedirect upon completion seems to be broken somehow. ...
0
votes
1answer
109 views
Is the name of import.sql in Spring webflow booking-faces project significant
I have been playing around with one of the sample Spring Webflow projects, booking-faces (Spring webflow + JSF + primefaces)
Once the application is deployed, I am able to search the hotels from the ...
0
votes
2answers
796 views
Url pattern to exclude javax.faces.resource from being invoked by servlet filter
I have created a servlet filter to handle session timeout and authentication.
@WebFilter(urlPatterns={"/acc/*"})
public class ResourceAuthorizationFilter implements Filter { ... }
The pages that I ...
1
vote
2answers
606 views
Spring/JSTL: How to iterate over a map and bind input fields to the values? [closed]
So my command object has a public Map<ProductVO, String> availableProducts; which holds the site's various products/services as the keys and the amount the user wishes to purchase as the values. ...
4
votes
2answers
151 views
Preferred alternative to creating a new object in Spring Webflow
I am currently working with Spring 3.1.2 (webflow version 2.3.1) and I'm facing an older problem once again. The problem is creating a new object via Spring webflow. So what I'd like to do is ...
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
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
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 ...
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, ...