Polish "What's new in Spring 3.1" re @Enable*

This commit is contained in:
Chris Beams 2011-10-11 18:51:32 +00:00
parent 5876307997
commit b08a6d32a4
1 changed files with 17 additions and 11 deletions

View File

@ -104,20 +104,27 @@
<title>Code equivalents for Spring's XML namespaces</title> <title>Code equivalents for Spring's XML namespaces</title>
<para>Code-based equivalents to popular Spring XML namespace elements <para>Code-based equivalents to popular Spring XML namespace elements
such as &lt;tx:annotation-driven/&gt; and &lt;mvc:annotation-driven&gt; &lt;context:component-scan/&gt;, &lt;tx:annotation-driven/&gt;
have been developed, in the form of and &lt;mvc:annotation-driven&gt; have been developed, most in the
<interfacename>@Enable</interfacename> annotations, for use in form of <interfacename>@Enable</interfacename> annotations. These are
conjunction with Spring's <interfacename>@Configuration</interfacename> designed for use in conjunction with Spring's
classes.</para> <interfacename>@Configuration</interfacename> classes, which were
introduced in Spring 3.0.</para>
<itemizedlist> <itemizedlist>
<listitem> <listitem>
<para>See org.springframework.scheduling.annotation.Configuration <para>See org.springframework.context.annotation.Configuration
Javadoc</para> Javadoc</para>
</listitem> </listitem>
<listitem> <listitem>
<para>See org.springframework.scheduling.annotation.EnableAsync <para>See org.springframework.context.annotation.ComponentScan
Javadoc</para>
</listitem>
<listitem>
<para>See
org.springframework.context.annotation.EnableLoadTimeWeaving
Javadoc</para> Javadoc</para>
</listitem> </listitem>
@ -127,19 +134,18 @@
</listitem> </listitem>
<listitem> <listitem>
<para>See <para>See org.springframework.scheduling.annotation.EnableAsync
org.springframework.scheduling.annotation.EnableTransactionManagement
Javadoc</para> Javadoc</para>
</listitem> </listitem>
<listitem> <listitem>
<para>See <para>See
org.springframework.scheduling.annotation.EnableLoadTimeWeaving org.springframework.transaction.annotation.EnableTransactionManagement
Javadoc</para> Javadoc</para>
</listitem> </listitem>
<listitem> <listitem>
<para>See org.springframework.scheduling.annotation.EnableWebMvc <para>See org.springframework.web.servlet.config.annotation.EnableWebMvc
Javadoc</para> Javadoc</para>
</listitem> </listitem>
</itemizedlist> </itemizedlist>