The most obvious thing I see is to change
if (profile.getUsername()==username && profile.getPassword()==password) {
System.out.println("return Profile");
return profile;
}
to
if...
Type: Posts; User: jpederzolli; Keyword(s):
The most obvious thing I see is to change
if (profile.getUsername()==username && profile.getPassword()==password) {
System.out.println("return Profile");
return profile;
}
to
if...
Im guessing because name is not a valid XHTML 1.1 form attribute...
http://learningforlife.fsu.edu/webmaster/references/xhtml/tags/forms/form.cfm
Thanks for the help.
Is this a feature on the roadmap, or is @Configurable always going to be a property-only annotation?
Thanks for the reply....
its pretty simple, I have class which implements the org.springframework.beans.factory.support.MethodReplacer interface, and I have a domain object with the @Configurable...
I have successfully been able to get @Configurable working for properties, however <replaced-method/> doesnt have any affect at all on the bean.
Am I missing something or is this simply a bug? I...
Here is my situation:
I have a model object with a Float member variable which I am updating with a form. I added the following to the controller which handles the request:
protected void...