Hi,
tried the solution described in:
http://static.springframework.org/spring/docs/1.2.x/reference/beans.html#d0e2303
Not perfect, but I think it is sufficient in most cases:-)
Thx. for the...
Type: Posts; User: Christian; Keyword(s):
Hi,
tried the solution described in:
http://static.springframework.org/spring/docs/1.2.x/reference/beans.html#d0e2303
Not perfect, but I think it is sufficient in most cases:-)
Thx. for the...
Thank you for your quick answer :-)
Unfortunately this approach is as verbose as my factory method solution.
I've heard a lot about the flexibility of Spring's bean container and thought that...
Hi,
I have a simple question: Can you access bean properties inside a bean
definition file in the way you would do it in a JSP page?
Example:
public class Person{
private String name;...
Hi everyone,
I just stumbled across SWF transactions and I wonder how you can use them.
There are methods to start, end a transaction and to check wether a transaction is active or not. But I...
Hello,
in my application doPreExecute should be called before a jsp page is displayed and check wether an item in a drop down list was selected or not. If nothing was selected the previous view...
Hi,
sorry for my last post. It was born out of frustration. Don't get me wrong, I really appreciate the work you and your colleagues are doing and I know that the community feedback is needed to...
Hi,
I have the same problem. The downloaded PR4 jar was ok, but unfortunately with a nasty bug (http://opensource.atlassian.com/projects/spring/browse/SWF-4). After building from CVS the same error...
Thx for the fast answer:-D
Chris
Hi,
I have the following form in my JSP page:
<form method="POST" action="flowController">
<input type="hidden" name="_flowExecutionId" value="<c:out value=${"flowExecutionId"}/>"/>
...
Is there a complete PR4 jar in the CVS? I've checked out the whole spring-projects in Eclipse and then tried to run the build.xml file in the spring-webflow folder. The build fails with the...
Damn it, just stumbled across this line in the Preview 4 - Completed Changes change log:
think that's it, i will download the latest version from the CVS now and try again.[/quote]
Hi,
I've stumbeld across a strange behaviour of the new setup bean action element when it is used togehter with validation. Don't know if it's a bug or if I do something wrong(which might be more...
Thanks a lot for your replies!
If I have a some free time, I'll experiment a little :D
Chris
Hi everyone,
is it possible to use SWF as a general purpose workflow engine?. I have to evaluate wether SWF can be used as a stand-alone module that can be integrated into any environment (e.g....
Hi,
I want to use Spring's JSP simplification tags because I think they really increase readability.
Unfortunately they don't seem to accept dynamic values although the readme.txt of the...
I have installed GEF 3.1M6 and it works!!!!!!
Thank you very much Christian :-D
Chris
Hi,
I've recently switched from Eclipse 3.0.2 to 3.1.M7 (because of Java Tiger:-)).
But now the Show Graph option (right click on config file in the Spring Beans View) doesn't appear anymore. The...
Hi,
I'm currently evaluating SWF and want to check wether it is suitable for a web app I have to develop at work. This web app is a management tool and has a lot of "controlled navigations" that...
To make a connection to my first post on this topic, if you want to add a new PhoneNumber TextField to your HTML form, do something like this
in one of the methods that are called in the if...else...
Sorry for my late answer, I am very busy in the moment
My Controller looks like this:
public class MyFormController extends SimpleFormController {
protected ModelAndView...
Hi,
here is how I solved this problem:
I have a session object named "data" that has a property object named "subscriber".
A subscriber can have one or more Phonenumbers (implemented as a ...
Hi everyone,
is there a way to mark a field in a HTML form as required?
I know that there is a rejectIfEmpty method in the ValidationUtils class, but I'am searching for a way to include this...
Hi,
because you use a redirect instead of a forward, all request attributes in your
mymodel Map are encoded in the URL. (key=value pairs).
You can retrieve them with request.getParameter("key")...
Hi everyone,
I never liked the way Spring handles custom error messages during binding. Declaring all non-String properties of an object in a message bundle to resolve them with a...