-2
votes
0answers
19 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
0answers
20 views

Using Spring Web-flow and trying to use Spring AjaxEventDecoration to kick off transitions

I am using Spring Web-flow and trying to use Spring AjaxEventDecoration to kick off transitions. but something is going on that this code is not running <tr> ...
0
votes
1answer
23 views

In Spring WebFlow, is it possible to continue the same flow after calling an external service?

One of my subflows need extra information from a service provider page, I will redirect the user to that page to insert his information and then return back to the same place he was in the flow. The ...
3
votes
1answer
64 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 ...
0
votes
2answers
68 views

I want to change the home page menu depending on the login user. How do i do it in Spring MVC?

I am able to log-in using Spring-MVC. Now i would like to change the menu's depending upon the user who logged in. How do i pass login-username to my home page using spring MVC Controller? So that i ...
0
votes
1answer
207 views

Spring security: Redirect after successful authentication based on a drop-down value in the login form

I'm not getting selected drop down values from front-end when i use 'commandName' attribute along with spring security, as the LoginModel fields (strLogintype,strUserType)become 'null' when i get it ...
0
votes
1answer
58 views

Terminate actual spring web flow execution

is it possible to determine the actual running flow in a spring mvc context and terminate it ? The reason why I'm asking is, that in my shop web app the whole checkout process is a web flow but the ...
1
vote
2answers
86 views

How to structure models, beans, controllers, and views for a different jsp pages but reside in to one table in a database?

This is a new project we are doing using Spring MVC 2.5, jsp , Java7, Ajax, and HTML5. On my part I am going to have have 7-10 jsp pages which contain one form each.These pages are sequential. i.e One ...
0
votes
0answers
352 views

Spring security:How to map j_spring_security_check in controller?

I'm trying to integrate spring security into existing code base which is in spring mvc. In my existing code base i v'e a client delegate in web project which interacts with service delegate in ...
0
votes
0answers
56 views

cannot convert from StandardServletEnvironment to MvcEnvironment in Springs

I am running one of the sample spring webflow example . At runtime I am getting the error as org.springframework.beans.factory.BeanCreationException: Error creating bean with name ...
0
votes
1answer
57 views

Spring Webflow - Forms - maintaing form values between back/next

I have a spring webflow app which is a form wizard - made up of 3 steps (each a seperate jsp). I am using a form backing object to update the values of an object on pages 1 & 2 of my wizard. ...
1
vote
0answers
90 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
1answer
123 views

When to use spring web flow over spring mvc

Is it fair to say that the most important justification to use Spring Webflow over Spring MVC is this: Using Spring MVC, the different stages of the workflow needs to be in code. i.e. If Stage 1 ends ...
0
votes
1answer
34 views

Spring Roo Authority Levels

I have a simple web app i am testing out. It has two levels i.e admin and normal user. The project also has three entities. What i am trying to achieve is an instance where a user cannot delete any ...
-1
votes
1answer
305 views

Spring security : HTTP Status 404 : The requested resource (/trade-web/login) is not available

I'm trying to do a spring security D/B authentication example with custom service class for authentication-provider. I'm getting HTTP 404 Status -The requested resource (/itrade-web/login) is not ...
0
votes
0answers
74 views

Upgrade from Spring webflow 1 to webflow 2

We have recently upgraded our project to Spring 3. Since Webflow 1.0 is not supported in Spring 3.0 we now have to upgrade webflow to 2.0. Introduction of Web 2.0 introduces a lot of compilation ...
0
votes
0answers
138 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
181 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" ...
0
votes
0answers
228 views

Spring-Security + Spring Web Flow + JSF(Mojarra) trouble

Hi i have a trouble about the configuration of Spring,Spring 3.1 WebFlow2.3, JSF (Mojarra) 2, Richfaces and Spring Security 3.1. I don't want a controller to map the login page or create a flow ...
1
vote
1answer
118 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 ...
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 ...
0
votes
1answer
239 views

Avoid default value in spring <form:input path=“var” /> for int variable

I'm using Spring 3.1.0 JARs for my application. I have mapped my bean class with view through command name, I have no problem with mapping it works clearly. The issue is that I'm having an int ...
0
votes
1answer
99 views

How to run STS in verbose mode from command line

How to run SpringSource Toolsite in verbose mode from command line in Windows ? I tried following command: STS.exe -verbose - consoleLog But not getting any logs in command prompt.
0
votes
2answers
59 views

How to find the controller mapped to the URL in spring annotations

When am asked to fix an issue, by understanding the code-flow, i find the URL which is been hit and then i go to the controller which is mapped to that particular URL I find the process very tedious ...
1
vote
3answers
283 views

Spring MVC cannot autowire

I keep getting the below error when my bean is being created, however I am unsure why it is not seeing the bean when I have it declared. Is there something wrong with the file structure or is there a ...
0
votes
0answers
215 views

Spring Webflow: The field type is required

I have been struggling with the following error for a while. java.lang.IllegalArgumentException: The field type is required I have a basic screen flow set up with 3 screens. Screen 1: identity ...
0
votes
0answers
19 views

spring petcare example can not add an appointment

checked out source code at https://anonsvn.springframework.org/svn/spring-samples/petcare/trunk, compile, deploy to tomcat 7 and run OK. But when I sign in using my gmail account and try to add an ...
0
votes
2answers
353 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
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 ...
1
vote
1answer
164 views

Partial JSR303 groups validation in Spring Webflow state

I have an entity which has several fields with JSR303 annotated constraints. I want the user to set those fields in several steps. I thought view states with explicit binding properties would do the ...
0
votes
3answers
100 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 ...
1
vote
2answers
148 views

Spring MVC - collection of string

I want to have an entity with a collection of string values, its to store receipt numbers which can be alpha-numeric, hence the need to store strings. How do I add such a field to an entity with ...
1
vote
2answers
364 views

What are the jars needed for only Spring-MVC?

I need to run the Spring-MVC in my scratch project. At the same time i have minimum memory area to store all the jar files. So any body recommend me only need for the Spring-MVC not any other jar ...
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 ...
0
votes
1answer
112 views

Pros & Cons of Session Repliction

Do I really need Session Replication? I am working on a number of web projects for a firm. Most of the projects are about one or two pages of input and then doing a save to a mysql database. Very ...
0
votes
1answer
103 views

Store additional details of logged-in user using spring security

I am looking for the right way to store and display additional details of a logged-in user through out my application using Spring Security. For example, I want to show Welcome:Mr.Smith ...
0
votes
0answers
686 views

Changed Spring version to 3.1.3.RELEASE in POM now I am getting JSP errors in Eclipse

I changed the Spring version to 3.1.3.RELEASE in POM now I am getting JSP errors in Eclipse. If I run the project in tomcat it works great but in eclipse its marking the following line as a error. ...
2
votes
1answer
352 views

Reading query strings from GET inside Spring web flow

Hy. Im continuing a spring web flow, using execution key. (an order paypal payment) and would need to read query strings from get. &TokenID and &PayerID this is how the URL looks like where ...
0
votes
1answer
531 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
264 views

How to add html5 placeholder attribute to form input elements in Spring MVC

How to add html5 placeholder attribute to form input elements in Spring MVC? Example: <input type="text" required="true" name="firstName" id="firstName" placeholder="Your Name" ...
0
votes
0answers
102 views

What UI Library(widgets) are you using in your Spring MVC or Spring Web Flow Project?

What UI Library(widgets) are you using in your Spring MVC or Spring Web Flow Project? I am working on a number of projects with Spring MVC and Spring Web Flow and we started to use Dojo(dijit) ...
0
votes
1answer
106 views

Can I use dojo.validate.us.isSocialSecurityNumber in a Spring Web Flow Project?

Can I use dojo.validate.us.isSocialSecurityNumber in a Spring Web Flow Project? I am trying to make a Soical Security field in my Spring web flow project but the following code dont work? How should ...
0
votes
1answer
98 views

How to stop my Spring WebFlow Dojo (Dijit) Dropdown (Select) from getting to big. I need srollbar

I am working on a project that is Spring Web Flow and I am using Dojo (Dijit) for the UI and I have a dropdown(select) one of my screens and I would like to see if I can set the size of it.. its to ...
0
votes
1answer
358 views

Trying to get JSF(Faces) working within Spring WebFlow

I been trying to add some JSF(Face) code into my Spring Webflow project but I am getting the following error: java.lang.IllegalStateException: FacesContext has not been initialized within the current ...
0
votes
1answer
259 views

trying to add JSF to my Spring WebFlow Project and now my WebFlow will not working

I am trying to add some JSF to my Spring WebFlow project and I made some changes trying to following the details at: ...
0
votes
1answer
215 views

Trying to get Spring Webflow Travel Sample With the PrimeFaces Components working

Trying to get Spring Webflow Travel Sample With the PrimeFaces Components working: The following are the steps I am taking: svn co ...
0
votes
1answer
142 views

Configuring Web Flow for use with JSF

I am trying to do Configuring Web Flow for use with JSF. from the following site http://static.springsource.org/spring-webflow/docs/2.3.x/reference/html/ch13s04.html but I am getting the following ...
1
vote
2answers
517 views

Trying to build Spring Webflow Travel Sample With the PrimeFaces Components and getting errors

I am trying to build Spring Webflow Travel Sample With the PrimeFaces Components and getting errors.. The following are the steps I am taking: svn co ...
1
vote
1answer
405 views

How do I make a Textarea field with Spring Webflow and Dojo(dijit)

I been trying to find out how to make a textarea field in my Spring Webflow project we are using Dojo (dijit) for the forms. can someone please help. below is my code! <td ...
0
votes
1answer
278 views

How to make a Spring WebFlow, Dojo (dijit) Text Field into a required TextArea

How can I change the following code to make the text field a textarea that is required and has the dijit text field look and feel? <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%> ...

1 2 3 4