diff --git a/spring-framework-reference/src/scheduling.xml b/spring-framework-reference/src/scheduling.xml
index b220fe07bce..b5810bdc5a1 100644
--- a/spring-framework-reference/src/scheduling.xml
+++ b/spring-framework-reference/src/scheduling.xml
@@ -756,7 +756,7 @@ public class ExampleJob extends QuartzJobBean {
More properties are available for the SchedulerFactoryBean for you
to set, such as the calendars used by the job details, properties to customize Quartz with,
etc. Have a look at the
- SchedulerFactoryBean Javadoc
+ SchedulerFactoryBean Javadoc
for more information.
diff --git a/spring-framework-reference/src/validation.xml b/spring-framework-reference/src/validation.xml
index d7dcef4fc25..b7612cdaed3 100644
--- a/spring-framework-reference/src/validation.xml
+++ b/spring-framework-reference/src/validation.xml
@@ -175,9 +175,9 @@ public class Person {
messages and suchlike.
More information on the MessageCodesResolver and the default
strategy can be found online with the Javadocs for
- MessageCodesResolver
+ MessageCodesResolver
and
- DefaultMessageCodesResolver
+ DefaultMessageCodesResolver
respectively.
diff --git a/spring-framework-reference/src/view.xml b/spring-framework-reference/src/view.xml
index 8c6831f4c1f..a2fe656cf93 100644
--- a/spring-framework-reference/src/view.xml
+++ b/spring-framework-reference/src/view.xml
@@ -1119,7 +1119,7 @@ findOwnersForm.url=/WEB-INF/jsp/findOwners.jsp
</bean>
Refer to the API
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/ui/velocity/VelocityEngineFactory.html">API
documentation for Spring configuration of Velocity, or the
Velocity documentation for examples and definitions of the
'velocity.properties' file itself.
diff --git a/spring-framework-reference/src/web-integration.xml b/spring-framework-reference/src/web-integration.xml
index c88b2a3e2e6..a27f1b72c63 100644
--- a/spring-framework-reference/src/web-integration.xml
+++ b/spring-framework-reference/src/web-integration.xml
@@ -83,7 +83,7 @@
contains all of the 'business beans' in one's application.
On to specifics: all that one need do is to declare a ContextLoaderListener
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/context/ContextLoaderListener.html">ContextLoaderListener
in the standard Java EE servlet web.xml file of one's web
application, and add a contextConfigLocation
<context-param/> section (in the same file) that defines which set
@@ -95,15 +95,6 @@
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
-
- Listeners were added to the Servlet API in version 2.3; listener
- startup order was finally clarified in Servlet 2.4. If you have a
- Servlet 2.3 container, you can use the ContextLoaderServlet
- to achieve the same functionality in a 100% portable fashion (with
- respect to startup order).
-
-
Find below the <context-param/> configuration:
<context-param>
@@ -115,7 +106,7 @@
context parameter, the ContextLoaderListener will
look for a file called /WEB-INF/applicationContext.xml
to load. Once the context files are loaded, Spring creates a WebApplicationContext
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/context/WebApplicationContext.html">WebApplicationContext
object based on the bean definitions and stores it in the
ServletContext of the web application.
@@ -127,7 +118,7 @@
WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext);
The WebApplicationContextUtils
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/context/support/WebApplicationContextUtils.html">WebApplicationContextUtils
class is for convenience, so you don't have to remember the name of the
ServletContext attribute. Its
getWebApplicationContext() method will return
@@ -185,7 +176,7 @@
The easiest way to integrate one's Spring middle-tier with one's
JSF web layer is to use the
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/jsf/DelegatingVariableResolver.html">
DelegatingVariableResolver class. To
configure this variable resolver in one's application, one will need to
edit one's faces-context.xml file. After the
@@ -283,7 +274,7 @@
well when mapping one's properties to beans in
faces-config.xml, but at times one may need to grab
a bean explicitly. The
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/jsf/FacesContextUtils.html">
FacesContextUtils class makes this easy.
It is similar to WebApplicationContextUtils,
except that it takes a FacesContext parameter
@@ -341,7 +332,7 @@
ContextLoaderPlugin
The ContextLoaderPlugin
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/ContextLoaderPlugIn.html">ContextLoaderPlugin
is a Struts 1.1+ plug-in that loads a Spring context file for the Struts
ActionServlet. This context refers to the root
WebApplicationContext (loaded by the
@@ -412,7 +403,7 @@
DelegatingRequestProcessor
To configure the
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/DelegatingRequestProcessor.html">
DelegatingRequestProcessor in your
struts-config.xml file, override the
"processorClass" property in the <controller> element. These
@@ -440,7 +431,7 @@
If you are using Tiles in your Struts application, you must
configure your <controller> with the DelegatingTilesRequestProcessor
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/DelegatingTilesRequestProcessor.html">DelegatingTilesRequestProcessor
instead.
@@ -452,7 +443,7 @@
can't use the DelegatingRequestProcessor or
DelegatingTilesRequestProcessor approaches, you
can use the
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/DelegatingActionProxy.html">
DelegatingActionProxy as the type in
your action-mapping.
@@ -490,7 +481,7 @@
is to extend Spring's Action classes for Struts.
For example, instead of subclassing Struts'
Action class, you can subclass Spring's
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/ActionSupport.html">
ActionSupport class.
The ActionSupport class provides additional
@@ -519,23 +510,23 @@
to the name:
ActionSupport,
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/ActionSupport.html">ActionSupport,
DispatchActionSupport,
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/DispatchActionSupport.html">DispatchActionSupport,
LookupDispatchActionSupport
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/LookupDispatchActionSupport.html">LookupDispatchActionSupport
and
MappingDispatchActionSupport.
+ url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/web/struts/MappingDispatchActionSupport.html">MappingDispatchActionSupport.
diff --git a/spring-framework-reference/src/xsd-configuration.xml b/spring-framework-reference/src/xsd-configuration.xml
index d0aa7cf507c..18fc58904d2 100644
--- a/spring-framework-reference/src/xsd-configuration.xml
+++ b/spring-framework-reference/src/xsd-configuration.xml
@@ -140,7 +140,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
Setting a bean property or constructor arg from a field value
- FieldRetrievingFactoryBean
+ FieldRetrievingFactoryBean
is a FactoryBean which retrieves a
static or non-static field value. It is typically
used for retrieving public static
@@ -149,7 +149,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
Find below an example which shows how a static field is exposed, by
- using the staticField
+ using the staticField
property:
It is also possible to access a non-static (instance) field of another bean,
as described in the API documentation for the
- FieldRetrievingFactoryBean
+ FieldRetrievingFactoryBean
class.