提交 b3b1fe15 编写于 作者: P Phillip Webb

Update API links in reference documentation

Replace all API links with the correct springsource.org URL
上级 8aed3222
...@@ -77,14 +77,14 @@ ...@@ -77,14 +77,14 @@
&lt;/beans&gt;</programlisting> &lt;/beans&gt;</programlisting>
<para>(The implicitly registered post-processors include <link <para>(The implicitly registered post-processors include <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/annotation/AutowiredAnnotationBeanPostProcessor.html"
><classname>AutowiredAnnotationBeanPostProcessor</classname></link>, <link ><classname>AutowiredAnnotationBeanPostProcessor</classname></link>, <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/context/annotation/CommonAnnotationBeanPostProcessor.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/context/annotation/CommonAnnotationBeanPostProcessor.html"
><classname>CommonAnnotationBeanPostProcessor</classname></link>, <link ><classname>CommonAnnotationBeanPostProcessor</classname></link>, <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/orm/jpa/support/PersistenceAnnotationBeanPostProcessor.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/orm/jpa/support/PersistenceAnnotationBeanPostProcessor.html"
><classname>PersistenceAnnotationBeanPostProcessor</classname></link>, as ><classname>PersistenceAnnotationBeanPostProcessor</classname></link>, as
well as the aforementioned <link well as the aforementioned <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/annotation/RequiredAnnotationBeanPostProcessor.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/annotation/RequiredAnnotationBeanPostProcessor.html"
><classname>RequiredAnnotationBeanPostProcessor</classname></link>.)</para> ><classname>RequiredAnnotationBeanPostProcessor</classname></link>.)</para>
<note> <note>
...@@ -643,7 +643,7 @@ public @interface MovieQualifier { ...@@ -643,7 +643,7 @@ public @interface MovieQualifier {
<title><classname>CustomAutowireConfigurer</classname></title> <title><classname>CustomAutowireConfigurer</classname></title>
<para>The <link <para>The <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/annotation/CustomAutowireConfigurer.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/annotation/CustomAutowireConfigurer.html"
><classname>CustomAutowireConfigurer</classname></link> is a ><classname>CustomAutowireConfigurer</classname></link> is a
<interfacename>BeanFactoryPostProcessor</interfacename> that enables you <interfacename>BeanFactoryPostProcessor</interfacename> that enables you
to register your own custom qualifier annotation types even if they are to register your own custom qualifier annotation types even if they are
...@@ -724,7 +724,7 @@ public @interface MovieQualifier { ...@@ -724,7 +724,7 @@ public @interface MovieQualifier {
the <interfacename>ApplicationContext</interfacename> of which the the <interfacename>ApplicationContext</interfacename> of which the
<classname>CommonAnnotationBeanPostProcessor</classname> is aware. The <classname>CommonAnnotationBeanPostProcessor</classname> is aware. The
names can be resolved through JNDI if you configure Spring's <link names can be resolved through JNDI if you configure Spring's <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/jndi/support/SimpleJndiBeanFactory.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/jndi/support/SimpleJndiBeanFactory.html"
><classname>SimpleJndiBeanFactory</classname></link> explicitly. ><classname>SimpleJndiBeanFactory</classname></link> explicitly.
However, it is recommended that you rely on the default behavior and However, it is recommended that you rely on the default behavior and
simply use Spring's JNDI lookup capabilities to preserve the level of simply use Spring's JNDI lookup capabilities to preserve the level of
......
...@@ -402,7 +402,7 @@ public class MovieFinderImpl implements MovieFinder { ...@@ -402,7 +402,7 @@ public class MovieFinderImpl implements MovieFinder {
<note> <note>
<para>If you do not want to rely on the default bean-naming strategy, you <para>If you do not want to rely on the default bean-naming strategy, you
can provide a custom bean-naming strategy. First, implement the <link can provide a custom bean-naming strategy. First, implement the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/support/BeanNameGenerator.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/support/BeanNameGenerator.html"
><interfacename>BeanNameGenerator</interfacename></link> interface, and ><interfacename>BeanNameGenerator</interfacename></link> interface, and
be sure to include a default no-arg constructor. Then, provide the be sure to include a default no-arg constructor. Then, provide the
fully-qualified class name when configuring the scanner:</para> fully-qualified class name when configuring the scanner:</para>
...@@ -439,7 +439,7 @@ public class MovieFinderImpl implements MovieFinder { ...@@ -439,7 +439,7 @@ public class MovieFinderImpl implements MovieFinder {
<note> <note>
<para>To provide a custom strategy for scope resolution rather than <para>To provide a custom strategy for scope resolution rather than
relying on the annotation-based approach, implement the <link relying on the annotation-based approach, implement the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/context/annotation/ScopeMetadataResolver.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/context/annotation/ScopeMetadataResolver.html"
><interfacename>ScopeMetadataResolver</interfacename></link> interface, ><interfacename>ScopeMetadataResolver</interfacename></link> interface,
and be sure to include a default no-arg constructor. Then, provide the and be sure to include a default no-arg constructor. Then, provide the
fully-qualified class name when configuring the scanner:</para> fully-qualified class name when configuring the scanner:</para>
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
functionality for managing and manipulating beans, including in a functionality for managing and manipulating beans, including in a
programmatic way. The <literal>org.springframework.context</literal> package programmatic way. The <literal>org.springframework.context</literal> package
adds the <link adds the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/context/ApplicationContext.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/context/ApplicationContext.html"
><interfacename>ApplicationContext</interfacename></link> interface, which ><interfacename>ApplicationContext</interfacename></link> interface, which
extends the <interfacename>BeanFactory</interfacename> interface, in extends the <interfacename>BeanFactory</interfacename> interface, in
addition to extending other interfaces to provide additional functionality addition to extending other interfaces to provide additional functionality
...@@ -639,7 +639,7 @@ argument.required=Ebagum lad, the '{0}' argument is required, I say, required.</ ...@@ -639,7 +639,7 @@ argument.required=Ebagum lad, the '{0}' argument is required, I say, required.</
<interfacename>TaskExecutor</interfacename> abstraction.</para> <interfacename>TaskExecutor</interfacename> abstraction.</para>
<para>Check out the JavaDoc of the <link <para>Check out the JavaDoc of the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/jca/context/SpringContextResourceAdapter.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/jca/context/SpringContextResourceAdapter.html"
>SpringContextResourceAdapter</link> class for the configuration details >SpringContextResourceAdapter</link> class for the configuration details
involved in RAR deployment.</para> involved in RAR deployment.</para>
......
...@@ -545,7 +545,7 @@ ...@@ -545,7 +545,7 @@
implement your own scopes, see the <interfacename>Scope</interfacename> implement your own scopes, see the <interfacename>Scope</interfacename>
implementations that are supplied with the Spring Framework itself and implementations that are supplied with the Spring Framework itself and
the <link the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/config/Scope.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/config/Scope.html"
>Scope Javadoc</link>, which explains the methods you need to implement >Scope Javadoc</link>, which explains the methods you need to implement
in more detail.</para> in more detail.</para>
......
...@@ -33,11 +33,11 @@ The footnote should x-ref to first section in that chapter but I can't find the ...@@ -33,11 +33,11 @@ The footnote should x-ref to first section in that chapter but I can't find the
<para>The <literal>org.springframework.beans</literal> and <para>The <literal>org.springframework.beans</literal> and
<literal>org.springframework.context</literal> packages are the basis for <literal>org.springframework.context</literal> packages are the basis for
Spring Framework's IoC container. The <interfacename><link Spring Framework's IoC container. The <interfacename><link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/BeanFactory.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/BeanFactory.html"
>BeanFactory</link></interfacename> interface provides an advanced >BeanFactory</link></interfacename> interface provides an advanced
configuration mechanism capable of managing any type of object. configuration mechanism capable of managing any type of object.
<literal><link <literal><link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/context/ApplicationContext.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/context/ApplicationContext.html"
>ApplicationContext</link></literal> is a sub-interface of >ApplicationContext</link></literal> is a sub-interface of
<interfacename>BeanFactory.</interfacename> It adds easier integration <interfacename>BeanFactory.</interfacename> It adds easier integration
with Spring's AOP features; message resource handling (for use in with Spring's AOP features; message resource handling (for use in
......
...@@ -145,180 +145,180 @@ ...@@ -145,180 +145,180 @@
<para>The following packages and types have been wholly or partially deprecated <para>The following packages and types have been wholly or partially deprecated
in Spring Framework 3.2 and may be removed in a future version. Click through in Spring Framework 3.2 and may be removed in a future version. Click through
to the linked Javadoc for each item for exact details. See also the to the linked Javadoc for each item for exact details. See also the
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/deprecated-list.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/deprecated-list.html">
complete list of deprecations</link> in the framework.</para> complete list of deprecations</link> in the framework.</para>
<itemizedlist> <itemizedlist>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/orm/ibatis/package-summary.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/orm/ibatis/package-summary.html">
org.springframework.orm.ibatis</link> org.springframework.orm.ibatis</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/scheduling/backportconcurrent/package-summary.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/backportconcurrent/package-summary.html">
org.springframework.scheduling.backportconcurrent</link> org.springframework.scheduling.backportconcurrent</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/ejb/support/package-summary.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/ejb/support/package-summary.html">
org.springframework.ejb.support</link> org.springframework.ejb.support</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/http/converter/xml/XmlAwareFormHttpMessageConverter.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/http/converter/xml/XmlAwareFormHttpMessageConverter.html">
org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter</link> org.springframework.http.converter.xml.XmlAwareFormHttpMessageConverter</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/jsf/DelegatingVariableResolver.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/jsf/DelegatingVariableResolver.html">
org.springframework.web.jsf.DelegatingVariableResolver</link> org.springframework.web.jsf.DelegatingVariableResolver</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/jsf/SpringBeanVariableResolver.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/jsf/SpringBeanVariableResolver.html">
org.springframework.web.jsf.SpringBeanVariableResolver</link> org.springframework.web.jsf.SpringBeanVariableResolver</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/ui/velocity/CommonsLoggingLogSystem.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/ui/velocity/CommonsLoggingLogSystem.html">
org.springframework.ui.velocity.CommonsLoggingLogSystem</link> org.springframework.ui.velocity.CommonsLoggingLogSystem</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/ui/velocity/VelocityEngineUtils.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/ui/velocity/VelocityEngineUtils.html">
org.springframework.ui.velocity.VelocityEngineUtils</link> org.springframework.ui.velocity.VelocityEngineUtils</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/beans/factory/config/BeanReferenceFactoryBean.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/config/BeanReferenceFactoryBean.html">
org.springframework.beans.factory.config.BeanReferenceFactoryBean</link> org.springframework.beans.factory.config.BeanReferenceFactoryBean</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/beans/factory/config/CommonsLogFactoryBean.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/config/CommonsLogFactoryBean.html">
org.springframework.beans.factory.config.CommonsLogFactoryBean</link> org.springframework.beans.factory.config.CommonsLogFactoryBean</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/instrument/classloading/oc4j/OC4JLoadTimeWeaver.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/instrument/classloading/oc4j/OC4JLoadTimeWeaver.html">
org.springframework.beans.instrument.classloading.oc4j.OC4JLoadTimeWeaver</link> org.springframework.beans.instrument.classloading.oc4j.OC4JLoadTimeWeaver</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/transaction/jta/OC4JJtaTransactionManager.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/transaction/jta/OC4JJtaTransactionManager.html">
org.springframework.transaction.jta.OC4JJtaTransactionManager</link> org.springframework.transaction.jta.OC4JJtaTransactionManager</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/util/ExpressionEvaluationUtils.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/util/ExpressionEvaluationUtils.html">
org.springframework.web.util.ExpressionEvaluationUtils</link> org.springframework.web.util.ExpressionEvaluationUtils</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerAdapter.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerAdapter.html">
org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter</link> org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerExceptionResolver.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/annotation/AnnotationMethodHandlerExceptionResolver.html">
org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver</link> org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/servlet/mvc/annotation/DefaultAnnotationHandlerMapping.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/annotation/DefaultAnnotationHandlerMapping.html">
org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping</link> org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/servlet/mvc/annotation/ServletAnnotationMappingUtils.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/mvc/annotation/ServletAnnotationMappingUtils.html">
org.springframework.web.servlet.mvc.annotation.ServletAnnotationMappingUtils</link> org.springframework.web.servlet.mvc.annotation.ServletAnnotationMappingUtils</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/jmx/support/MBeanRegistrationSupport.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/jmx/support/MBeanRegistrationSupport.html">
org.springframework.jmx.support.MBeanRegistrationSupport</link> org.springframework.jmx.support.MBeanRegistrationSupport</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/test/context/ContextConfigurationAttributes.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/test/context/ContextConfigurationAttributes.html">
org.springframework.test.context.ContextConfigurationAttributes</link> org.springframework.test.context.ContextConfigurationAttributes</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/test/context/junit4/AbstractTransactionalJUnit4SpringContextTests.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/test/context/junit4/AbstractTransactionalJUnit4SpringContextTests.html">
org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests</link> org.springframework.test.context.junit4.AbstractTransactionalJUnit4SpringContextTests</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/test/context/testng/AbstractTransactionalTestNGSpringContextTests.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/test/context/testng/AbstractTransactionalTestNGSpringContextTests.html">
org.springframework.test.context.testng.AbstractTransactionalTestNGSpringContextTests</link> org.springframework.test.context.testng.AbstractTransactionalTestNGSpringContextTests</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/test/jdbc/SimpleJdbcTestUtils.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/test/jdbc/SimpleJdbcTestUtils.html">
org.springframework.test.jdbc.SimpleJdbcTestUtils</link> org.springframework.test.jdbc.SimpleJdbcTestUtils</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/servlet/view/ContentNegotiatingViewResolver.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/servlet/view/ContentNegotiatingViewResolver.html">
org.springframework.web.servlet.view.ContentNegotiatingViewResolver</link> org.springframework.web.servlet.view.ContentNegotiatingViewResolver</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/transaction/interceptor/TransactionAspectUtils.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/transaction/interceptor/TransactionAspectUtils.html">
org.springframework.transaction.interceptor.TransactionAspectUtils</link> org.springframework.transaction.interceptor.TransactionAspectUtils</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/http/HttpStatus.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/http/HttpStatus.html">
org.springframework.http.HttpStatus</link> org.springframework.http.HttpStatus</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/web/util/UriUtils.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/util/UriUtils.html">
org.springframework.web.util.UriUtils</link> org.springframework.web.util.UriUtils</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/orm/jpa/vendor/TopLinkJpaDialect.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/orm/jpa/vendor/TopLinkJpaDialect.html">
org.springframework.orm.jpa.vendor.TopLinkJpaDialect</link> org.springframework.orm.jpa.vendor.TopLinkJpaDialect</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/orm/jpa/vendor/TopLinkJpaVendorAdapter.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/orm/jpa/vendor/TopLinkJpaVendorAdapter.html">
org.springframework.orm.jpa.vendor.TopLinkJpaVendorAdapter</link> org.springframework.orm.jpa.vendor.TopLinkJpaVendorAdapter</link>
</para> </para>
</listitem> </listitem>
<listitem> <listitem>
<para> <para>
<link xl:href="http://static.springsource.org/spring-framework/docs/3.2.0.RELEASE/javadoc-api/org/springframework/util/CachingMapDecorator.html"> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/util/CachingMapDecorator.html">
org.springframework.orm.util.CachingMapDecorator</link> org.springframework.orm.util.CachingMapDecorator</link>
</para> </para>
</listitem> </listitem>
......
...@@ -884,7 +884,7 @@ public class ExampleJob extends QuartzJobBean { ...@@ -884,7 +884,7 @@ public class ExampleJob extends QuartzJobBean {
<classname>SchedulerFactoryBean</classname> for you to set, such as the <classname>SchedulerFactoryBean</classname> for you to set, such as the
calendars used by the job details, properties to customize Quartz with, calendars used by the job details, properties to customize Quartz with,
etc. Have a look at the <link etc. Have a look at the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/scheduling/quartz/SchedulerFactoryBean.html">SchedulerFactoryBean xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/scheduling/quartz/SchedulerFactoryBean.html">SchedulerFactoryBean
Javadoc</link> for more information.</para> Javadoc</link> for more information.</para>
</section> </section>
</section> </section>
......
...@@ -215,9 +215,9 @@ ...@@ -215,9 +215,9 @@
<para>More information on the <para>More information on the
<interfacename>MessageCodesResolver</interfacename> and the default <interfacename>MessageCodesResolver</interfacename> and the default
strategy can be found online with the Javadocs for <link strategy can be found online with the Javadocs for <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/validation/MessageCodesResolver.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/validation/MessageCodesResolver.html"
>MessageCodesResolver</link> and <link >MessageCodesResolver</link> and <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/validation/DefaultMessageCodesResolver.html" xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/validation/DefaultMessageCodesResolver.html"
>DefaultMessageCodesResolver</link> respectively.</para> >DefaultMessageCodesResolver</link> respectively.</para>
</section> </section>
......
...@@ -1147,7 +1147,7 @@ findOwnersForm.url=/WEB-INF/jsp/findOwners.jsp ...@@ -1147,7 +1147,7 @@ findOwnersForm.url=/WEB-INF/jsp/findOwners.jsp
&lt;/bean&gt;</programlisting> &lt;/bean&gt;</programlisting>
<para>Refer to the <link <para>Refer to the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/ui/velocity/VelocityEngineFactory.html">API xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/ui/velocity/VelocityEngineFactory.html">API
documentation</link> for Spring configuration of Velocity, or the documentation</link> for Spring configuration of Velocity, or the
Velocity documentation for examples and definitions of the Velocity documentation for examples and definitions of the
<filename>'velocity.properties'</filename> file itself.</para> <filename>'velocity.properties'</filename> file itself.</para>
......
...@@ -88,7 +88,7 @@ ...@@ -88,7 +88,7 @@
contains all of the 'business beans' in one's application.</para> contains all of the 'business beans' in one's application.</para>
<para>On to specifics: all that one need do is to declare a <link <para>On to specifics: all that one need do is to declare a <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/context/ContextLoaderListener.html"><classname>ContextLoaderListener</classname></link> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/context/ContextLoaderListener.html"><classname>ContextLoaderListener</classname></link>
in the standard Java EE servlet <literal>web.xml</literal> file of one's web in the standard Java EE servlet <literal>web.xml</literal> file of one's web
application, and add a <literal>contextConfigLocation</literal> application, and add a <literal>contextConfigLocation</literal>
&lt;context-param/&gt; section (in the same file) that defines which set &lt;context-param/&gt; section (in the same file) that defines which set
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
context parameter, the <classname>ContextLoaderListener</classname> will context parameter, the <classname>ContextLoaderListener</classname> will
look for a file called <literal>/WEB-INF/applicationContext.xml</literal> look for a file called <literal>/WEB-INF/applicationContext.xml</literal>
to load. Once the context files are loaded, Spring creates a <link to load. Once the context files are loaded, Spring creates a <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/context/WebApplicationContext.html"><classname>WebApplicationContext</classname></link> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/context/WebApplicationContext.html"><classname>WebApplicationContext</classname></link>
object based on the bean definitions and stores it in the object based on the bean definitions and stores it in the
<interfacename>ServletContext</interfacename> of the web application.</para> <interfacename>ServletContext</interfacename> of the web application.</para>
...@@ -123,7 +123,7 @@ ...@@ -123,7 +123,7 @@
<programlisting language="java">WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext);</programlisting> <programlisting language="java">WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(servletContext);</programlisting>
<para>The <link <para>The <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/context/support/WebApplicationContextUtils.html"><classname>WebApplicationContextUtils</classname></link> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/context/support/WebApplicationContextUtils.html"><classname>WebApplicationContextUtils</classname></link>
class is for convenience, so you don't have to remember the name of the class is for convenience, so you don't have to remember the name of the
<interfacename>ServletContext</interfacename> attribute. Its <interfacename>ServletContext</interfacename> attribute. Its
<emphasis>getWebApplicationContext()</emphasis> method will return <emphasis>getWebApplicationContext()</emphasis> method will return
...@@ -181,7 +181,7 @@ ...@@ -181,7 +181,7 @@
<para>The easiest way to integrate one's Spring middle-tier with one's <para>The easiest way to integrate one's Spring middle-tier with one's
JSF web layer is to use the <link JSF web layer is to use the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/jsf/DelegatingVariableResolver.html"> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/jsf/DelegatingVariableResolver.html">
<classname>DelegatingVariableResolver</classname></link> class. To <classname>DelegatingVariableResolver</classname></link> class. To
configure this variable resolver in one's application, one will need to configure this variable resolver in one's application, one will need to
edit one's <emphasis>faces-context.xml</emphasis> file. After the edit one's <emphasis>faces-context.xml</emphasis> file. After the
...@@ -279,7 +279,7 @@ ...@@ -279,7 +279,7 @@
well when mapping one's properties to beans in well when mapping one's properties to beans in
<emphasis>faces-config.xml</emphasis>, but at times one may need to grab <emphasis>faces-config.xml</emphasis>, but at times one may need to grab
a bean explicitly. The <link a bean explicitly. The <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/jsf/FacesContextUtils.html"> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/jsf/FacesContextUtils.html">
<classname>FacesContextUtils</classname></link> class makes this easy. <classname>FacesContextUtils</classname></link> class makes this easy.
It is similar to <classname>WebApplicationContextUtils</classname>, It is similar to <classname>WebApplicationContextUtils</classname>,
except that it takes a <classname>FacesContext</classname> parameter except that it takes a <classname>FacesContext</classname> parameter
...@@ -338,7 +338,7 @@ ...@@ -338,7 +338,7 @@
<title>ContextLoaderPlugin</title> <title>ContextLoaderPlugin</title>
<para>The <link <para>The <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/ContextLoaderPlugIn.html"><classname>ContextLoaderPlugin</classname></link> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/ContextLoaderPlugIn.html"><classname>ContextLoaderPlugin</classname></link>
is a Struts 1.1+ plug-in that loads a Spring context file for the Struts is a Struts 1.1+ plug-in that loads a Spring context file for the Struts
<classname>ActionServlet</classname>. This context refers to the root <classname>ActionServlet</classname>. This context refers to the root
<classname>WebApplicationContext</classname> (loaded by the <classname>WebApplicationContext</classname> (loaded by the
...@@ -409,7 +409,7 @@ ...@@ -409,7 +409,7 @@
<title>DelegatingRequestProcessor</title> <title>DelegatingRequestProcessor</title>
<para>To configure the <link <para>To configure the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/DelegatingRequestProcessor.html"> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/DelegatingRequestProcessor.html">
<literal>DelegatingRequestProcessor</literal></link> in your <literal>DelegatingRequestProcessor</literal></link> in your
<emphasis>struts-config.xml</emphasis> file, override the <emphasis>struts-config.xml</emphasis> file, override the
"processorClass" property in the &lt;controller&gt; element. These "processorClass" property in the &lt;controller&gt; element. These
...@@ -437,7 +437,7 @@ ...@@ -437,7 +437,7 @@
<note> <note>
<para>If you are using Tiles in your Struts application, you must <para>If you are using Tiles in your Struts application, you must
configure your &lt;controller&gt; with the <link configure your &lt;controller&gt; with the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/DelegatingTilesRequestProcessor.html"><classname>DelegatingTilesRequestProcessor</classname></link> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/DelegatingTilesRequestProcessor.html"><classname>DelegatingTilesRequestProcessor</classname></link>
instead.</para> instead.</para>
</note> </note>
</section> </section>
...@@ -449,7 +449,7 @@ ...@@ -449,7 +449,7 @@
can't use the <classname>DelegatingRequestProcessor</classname> or can't use the <classname>DelegatingRequestProcessor</classname> or
<classname>DelegatingTilesRequestProcessor</classname> approaches, you <classname>DelegatingTilesRequestProcessor</classname> approaches, you
can use the <link can use the <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/DelegatingActionProxy.html"> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/DelegatingActionProxy.html">
<classname>DelegatingActionProxy</classname></link> as the type in <classname>DelegatingActionProxy</classname></link> as the type in
your action-mapping.</para> your action-mapping.</para>
...@@ -487,7 +487,7 @@ ...@@ -487,7 +487,7 @@
is to extend Spring's <classname>Action</classname> classes for Struts. is to extend Spring's <classname>Action</classname> classes for Struts.
For example, instead of subclassing Struts' For example, instead of subclassing Struts'
<classname>Action</classname> class, you can subclass Spring's <link <classname>Action</classname> class, you can subclass Spring's <link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/ActionSupport.html"> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/ActionSupport.html">
<classname>ActionSupport</classname></link> class.</para> <classname>ActionSupport</classname></link> class.</para>
<para>The <classname>ActionSupport</classname> class provides additional <para>The <classname>ActionSupport</classname> class provides additional
...@@ -516,23 +516,23 @@ ...@@ -516,23 +516,23 @@
to the name: <itemizedlist spacing="compact"> to the name: <itemizedlist spacing="compact">
<listitem> <listitem>
<para><link <para><link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/ActionSupport.html"><classname>ActionSupport</classname></link>,</para> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/ActionSupport.html"><classname>ActionSupport</classname></link>,</para>
</listitem> </listitem>
<listitem> <listitem>
<para><link <para><link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/DispatchActionSupport.html"><literal>DispatchActionSupport</literal></link>,</para> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/DispatchActionSupport.html"><literal>DispatchActionSupport</literal></link>,</para>
</listitem> </listitem>
<listitem> <listitem>
<para><link <para><link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/LookupDispatchActionSupport.html"><literal>LookupDispatchActionSupport</literal></link> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/LookupDispatchActionSupport.html"><literal>LookupDispatchActionSupport</literal></link>
and</para> and</para>
</listitem> </listitem>
<listitem> <listitem>
<para><link <para><link
xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/web/struts/MappingDispatchActionSupport.html"><literal>MappingDispatchActionSupport</literal></link>.</para> xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/web/struts/MappingDispatchActionSupport.html"><literal>MappingDispatchActionSupport</literal></link>.</para>
</listitem> </listitem>
</itemizedlist></para> </itemizedlist></para>
......
...@@ -144,7 +144,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem ...@@ -144,7 +144,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
<section xml:id="xsd-config-body-schemas-util-frfb"> <section xml:id="xsd-config-body-schemas-util-frfb">
<title>Setting a bean property or constructor arg from a field value</title> <title>Setting a bean property or constructor arg from a field value</title>
<para> <para>
<link xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html"><classname>FieldRetrievingFactoryBean</classname></link> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html"><classname>FieldRetrievingFactoryBean</classname></link>
is a <interfacename>FactoryBean</interfacename> which retrieves a is a <interfacename>FactoryBean</interfacename> which retrieves a
<literal>static</literal> or non-static field value. It is typically <literal>static</literal> or non-static field value. It is typically
used for retrieving <literal>public</literal> <literal>static</literal> used for retrieving <literal>public</literal> <literal>static</literal>
...@@ -153,7 +153,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem ...@@ -153,7 +153,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
</para> </para>
<para> <para>
Find below an example which shows how a <literal>static</literal> field is exposed, by Find below an example which shows how a <literal>static</literal> field is exposed, by
using the <link xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html#setStaticField(java.lang.String)"><literal>staticField</literal></link> using the <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html#setStaticField(java.lang.String)"><literal>staticField</literal></link>
property: property:
</para> </para>
<programlisting language="xml"><![CDATA[<bean id="myField" <programlisting language="xml"><![CDATA[<bean id="myField"
...@@ -180,7 +180,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem ...@@ -180,7 +180,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
<para> <para>
It is also possible to access a non-static (instance) field of another bean, It is also possible to access a non-static (instance) field of another bean,
as described in the API documentation for the as described in the API documentation for the
<link xl:href="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html"><classname>FieldRetrievingFactoryBean</classname></link> <link xl:href="http://static.springsource.org/spring-framework/docs/current/javadoc-api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html"><classname>FieldRetrievingFactoryBean</classname></link>
class. class.
</para> </para>
<para> <para>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册