fixed namespace example (SPR-6766)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2869 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller 2010-01-27 13:48:57 +00:00
parent 41bf231f96
commit 9c26d02ff9
1 changed files with 2 additions and 2 deletions

View File

@ -498,7 +498,7 @@ public class TaskExecutorExample {
example.</para>
<programlisting language="xml"><![CDATA[<task:scheduled-tasks scheduler="myScheduler">
<task:scheduled ref="someObject" method="someMethod" fixed-delay="5000"/>
<task:scheduled-tasks/>
</task:scheduled-tasks>
<task:scheduler id="myScheduler" pool-size="10"/>]]></programlisting>
@ -511,7 +511,7 @@ public class TaskExecutorExample {
<programlisting language="xml"><![CDATA[<task:scheduled-tasks scheduler="myScheduler">
<task:scheduled ref="someObject" method="someMethod" fixed-rate="5000"/>
<task:scheduled ref="anotherObject" method="anotherMethod" cron="*/5 * * * * MON-FRI"/>
<task:scheduled-tasks/>
</task:scheduled-tasks>
<task:scheduler id="myScheduler" pool-size="10"/>]]></programlisting>
</section>