doc improvements

This commit is contained in:
Keith Donald
2008-05-14 04:16:46 +00:00
parent 9c02444861
commit bbdead4681
4 changed files with 11 additions and 5 deletions

View File

@@ -128,9 +128,9 @@
<security:intercept-url pattern="/spring/logout*" access="ROLE_USER" />
<security:form-login login-page="/spring/login"
login-url="/spring/login-process"
default-target-url="/spring/main"
authentication-failure-url="/spring/login?login_error=1" />
login-processing-url="/spring/loginProcess"
default-target-url="/spring/main"
authentication-failure-url="/spring/login?login_error=1" />
<security:logout logout-url="/spring/logout" logout-success-url="/spring/logout-success" />
</security:http>

View File

@@ -23,7 +23,7 @@
<bookinfo>
<title>Spring Web Flow 2 Reference Guide</title>
<subtitle>Reference Documentation</subtitle>
<releaseinfo>Version 2.0.0</releaseinfo>
<releaseinfo>Version 2.0.1</releaseinfo>
<pubdate>April 2008</pubdate>
<authorgroup>
<author>

View File

@@ -231,6 +231,11 @@ public class BookingValidator {
<para>
A Validator can also accept a Spring MVC <code>Errors</code> object, which is required for invoking existing Spring Validators.
</para>
<para>
Validators must be registered as Spring beans employing the naming convention <code>${model}Validator</code> to be detected and invoked automatically.
In the example above, Spring 2.5 classpath-scanning would detect the @Component and automatically register it as a bean with the name <code>bookingValidator</code>.
Then, anytime the <code>booking</code> model needs to be validated, this <code>bookingValidator</code> instance would be invoked for you.
</para>
</sect3>
</sect2>
</sect1>