0
votes
3answers
101 views

getting stack over flow during return page from spring mvc controller

I have spring mvc controller , contain method like @requestmapping("jsps/welcome.jsp") public String handleRequest(){ system.out.println("inside the handler"); return "welcome";} when I am trying ...
2
votes
1answer
205 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 ...
1
vote
2answers
854 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" ...
0
votes
1answer
844 views

Can I get remove of the 'execution' parameter from GET?

I use to Spring Webflow. Can I get remove of the 'execution' parameter from GET? For example: http://localhost:8090/myapp/account/register.do?execution=e1s2 ...
0
votes
1answer
502 views

How can I replace button as link?

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ...
0
votes
1answer
385 views

Spring3 - WebFlow - JSF — Can't get mapping of '/' to work properly

Sorry if this is a Newbie question, but I am trying to teach myself Spring MVC/WebFlow with JSF/Primefaces, and I've run into a snag setting it up... If in web.xml, I set the MVC dispatcher to a ...