Questions tagged [spring-webflow]

Spring Webflow is a web-app framework which helps to define the page navigation rules in a intuitive, and reusable way.

Spring Web Flow is a Spring MVC extension that allows implementing the "flows" of a web application. A flow encapsulates a sequence of steps that guide a user through the execution of some business task. It spans multiple HTTP requests, has state, deals with transactional data, is reusable, and may be dynamic and long-running in nature.

1302 questions
0
votes
1 answer

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? Please help me out..
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

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 setup a Ticket Model and pass it to the next…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

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 my functions in the control, service and dao so I…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

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 database.xml file and ran my project and checked…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

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: Can…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

Spring, MySQL and hibernate joining tables in one model

Spring, MySQL and hibernate joining tables in one model I am working on a Spring, MySQL and Hibernate project and this is the first time the firm is asking me to do a join of tables within the java code. in the pass I write code like the following…
PartyWithJohn
  • 466
  • 4
  • 8
  • 14
0
votes
1 answer

Spring WebFlow2 Javascript only working on first radio button

Spring WebFlow2 Javascript only working on first radio button I am trying to use Spring JavaScript that comes with WebFlow2 to submitted my page with a transition value if the user clicks on one of the radio buttons. I inserted my javascript on the…
PartyWithJohn
  • 466
  • 4
  • 8
  • 14
0
votes
2 answers

Spring WebFlow2 JavaScript is not submitting page?

Spring WebFlow2 JavaScript is not submitting page? I am trying to use Spring JavaScript that comes with WebFlow2 to submitted my page with a transition value if the user clicks on one of the radio buttons. I inserted my javascript but the page is…
PartyWithJohn
  • 466
  • 4
  • 8
  • 14
0
votes
1 answer

Execute some code only when the user navigates to a view from a different view

I have an JSF application that uses Spring Web Flow for navigation. Each time the user navigates to the accounts view from another view a piece of code should be executed. For the accounts view I have a managed bean called accountsBean. I thought of…
Seitaridis
  • 4,459
  • 9
  • 53
  • 85
0
votes
2 answers

How to set off a Spring WebFlow transition in javascript

I have a Spring WebFlow2 project that if the user clicks the "loadschools" submit button I will call to my controller and load the states and then redisplay the same screen with the new states based on a radio button that is selected. I would like…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
2 answers

Do I use a action-state? loading dropdown values based on radio button

Do I use a action-state? loading dropdown values based on radio button I am trying to load the values of a dropdown based on the user clicking a radio button but I dont know if this can be done with a action-state. This is what I was thinking. My…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

How to check date format in Spring WebFlow2

How to check date format in Spring WebFlow2. I am trying to find some code that will work with Spring Webflow to check that the date the user entered is valid. I would think this is a easy check
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

Spring WebFlow, I cant find path to files outside my flow?

Spring WebFlow, I cant find path to files outside my flow? I am working on a Spring Webflow2 project and sometimes I have to access JavaScript and Image files that are not in my flow. I cant find the right path to put into my JSP…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

Javascript code to kick off Spring WebFlow2 transition

Does anyone know of any javascript code that I can put on a radio button that will kick off a Spring WebFlow2 Transition event? I am looking to kick off a transition to load values into a dropdown if the user clicks on a radio button... can someone…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34
0
votes
1 answer

Spring WebFlow2. Should I use Ajax or a transition?

Spring WebFlow2 Question. Should I use Ajax or a transition? I have a screen that my user has to fill out some data. The user sees a number of radio buttons and and based on the radio button picked he has to pick a store from a dropdown list. The…
Johnathan Smith
  • 1,112
  • 2
  • 17
  • 34