Fix minor problems and polish reference docs
Problems
- Eliminate — in favor of —
— was causing 'no such entity' errors during docbook
processing; — produces the equivalent output.
- Fix column issues in appendices
column counts were set to 3, when they are in fact 4. This passed
under DocBook 4 and Spring Build for unknown reasons, but caused a
hard stop under DocBook 5 and the docbook-reference-plugin.
- Add jdbc callout section in docbook 5-friendly style
use <co/> tags as advertised in DocBook documentation.
- Set correct widths for PDF ref doc images
images were rendering larger than the PDF page; just set all to
width=400 and everything looks good.
Polish
- Update reference doc copyright to 2012
- Remove "work-in-progress" language from ref docs
- Update maven URLs to repo.springsource.org
- Update javadoc urls from 3.0.x/javadoc-api => current/api
- Replace hardcoded "3.1" with ${version} in ref doc
This commit is contained in:
@@ -140,7 +140,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
|
||||
<section id="xsd-config-body-schemas-util-frfb">
|
||||
<title>Setting a bean property or constructor arg from a field value</title>
|
||||
<para>
|
||||
<ulink url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html"><classname>FieldRetrievingFactoryBean</classname></ulink>
|
||||
<ulink url="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html"><classname>FieldRetrievingFactoryBean</classname></ulink>
|
||||
is a <interfacename>FactoryBean</interfacename> which retrieves a
|
||||
<literal>static</literal> or non-static field value. It is typically
|
||||
used for retrieving <literal>public</literal> <literal>static</literal>
|
||||
@@ -149,7 +149,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
|
||||
</para>
|
||||
<para>
|
||||
Find below an example which shows how a <literal>static</literal> field is exposed, by
|
||||
using the <ulink url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html#setStaticField(java.lang.String)"><literal>staticField</literal></ulink>
|
||||
using the <ulink url="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html#setStaticField(java.lang.String)"><literal>staticField</literal></ulink>
|
||||
property:
|
||||
</para>
|
||||
<programlisting language="xml"><![CDATA[<bean id="myField"
|
||||
@@ -176,7 +176,7 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
|
||||
<para>
|
||||
It is also possible to access a non-static (instance) field of another bean,
|
||||
as described in the API documentation for the
|
||||
<ulink url="http://static.springframework.org/spring/docs/3.0.x/javadoc-api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html"><classname>FieldRetrievingFactoryBean</classname></ulink>
|
||||
<ulink url="http://static.springframework.org/spring/docs/current/api/org/springframework/beans/factory/config/FieldRetrievingFactoryBean.html"><classname>FieldRetrievingFactoryBean</classname></ulink>
|
||||
class.
|
||||
</para>
|
||||
<para>
|
||||
|
||||
Reference in New Issue
Block a user