Using Web Flow, I have a modal pop up form that gets displayed when the user clicks on the link below:
<a id="addPMTpopup" href="${flowExecutionUrl}&_eventId=addPayment">Add Payment</a>
...
Type: Posts; User: JohnRock; Keyword(s):
Using Web Flow, I have a modal pop up form that gets displayed when the user clicks on the link below:
<a id="addPMTpopup" href="${flowExecutionUrl}&_eventId=addPayment">Add Payment</a>
...
To clarify:
In my web flow all Action classes are marked as @Transactional(readOnly=true) and no DAOs ever call merge,save,update or flush etc. The only call to merge is done in the XML at the end...
I have a web flow that is using a PersistenceContext and committing all changes to the database in the end state. However, I need to be able to update a database locking table at the beginning and...
Thanks for your help. The problem was just that I was trying to autowire my custom bean as an instance of its class, but I needed to autowire it as an instance of its interface: ...
I am a bit confused about how to do this so I will just explain what I am trying to do and hopefully someone can point me in the right direction.
We use a custom userDetailsService in our Spring...
Perhaps I am confused, but the problem is that I cannot make this logging go away no matter what I try in my log4j.properties file. I suspect that it has to do with this being an AJAX javascript...
In a Spring Webflow I have a modal popup, which works fine. However, there is a logging message that gets printed every time the modal popup is launched and I am trying to shut it off so it does not...
The problem was that this was not working with spring-webmvc < 3.02. I updated my spring dependency to 3.03 and it works as expected
I am trying to bind a collection of objects in a spring web flow form. Each object in the collection has fields that require a custom type converter.
Can this be done? How do I configure this?
...
Will a web flow that uses
<persistence-context/>
work if the database connection pool is manged by tomcat (in GlobalNamingResources of server.xml) and retrieved by spring using JNDI, or is it...
I have a main flow that is annotated with
<persistence-context/>
From there I call a subflow which may update some objects, then return to the main flow .
At the end of the main flow...
I have implemented some testing of my web flows by extending AbstractXmlFlowExecutionTests and I wanted to know if it is possible to write Concordion acceptance tests to test a flow? Is there a way...
Thanks for all your help. I was able to do it like you suggested:
try {
HttpServletRequest request =...
In my Spring Webflow app:
context.getExternalContext() returns a
org.springframework.webflow.mvc.servlet.MvcExternalContext
which extends
...
That is all well and good, except for the fact that a webflow RequestContext is not linked to an HTTP request, and you cannot get the request object from it. Hence the point of my question. Your code...
I am trying to figure out the preferred way to read my war's manifest file from within an action in webflow. I am a little stuck because I don't have access to the servlet context inside a webflow...
I am considering using Spring Web Flow for a new project but I will probably have to use Spring Security 2.0.4, which is not supported in SWF 2.1. Would it be a bad idea to start a new project using...
I am about to begin work on a new application and am looking to figure out the best practices approach to build it with given the many new changes in Spring 3.0 and the fact that the way I am used to...
What is the difference between the way a request is authenticated in Form based authentication, and the way it is authenticated in HTTP Basic authentication?
In other words, a request comes in:...
I have a web app running spring security form based authentication. I am trying to configure some webservices running within this app that require the same authentication as the web-based web app. ...
I am running an app using Spring Security Form based authentication. I would like to integrate some RestFul Webservices into this same app.
I would like to know what is the best practices way...
Thank you so much for your help. It has helped me a lot. You guys rock!
Hey Chudak, since you are a Spring and Maven fan, can YOU answer my question? How do I set up my pom to have the same 5 jars that I have been using in ant? (see previous post) Is this possible with...
I thank you for your suggestion. I do happen to have some knowledge about transitive dependency and exclusions, and implementing them with Maven. But what stands true after many many hours of...
Thank you for your guidance. I think my confusion was that since I had been using spring-security version 2.0.4, I was searching for that and it wasn't appearing. Does that mean that you must use the...