|
From: Tim K. <tim...@vi...> - 2004-08-05 15:39:34
|
Don't know if this already has been reported, but on the online user
reference document in section 3.3.2, the code example seems to have the
wrong closing tag. (should be </set> not </map>)
<!-- results in a setSomeSet(java.util.Set) call -->
<property name="someSet">
<set>
<value>just some string</value>
<ref bean="myDataSource"</ref>
</map>
</property>
|
|
From: Colin S. <col...@ex...> - 2004-08-05 16:30:54
|
Thanks, fixed... Tim Kettering wrote: > > Don't know if this already has been reported, but on the online user > reference document in section 3.3.2, the code example seems to have > the wrong closing tag. (should be </set> not </map>) > > <!-- results in a setSomeSet(java.util.Set) call --> > <property name="someSet"> > <set> > <value>just some string</value> > <ref bean="myDataSource"</ref> > </map> > </property> > > > > ------------------------------------------------------- > This SF.Net email is sponsored by OSTG. Have you noticed the changes on > Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now, > one more big change to announce. We are now OSTG- Open Source Technology > Group. Come see the changes on the new OSTG site. www.ostg.com > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer |
|
From: Tim K. <tim...@vi...> - 2004-08-05 20:48:06
|
Just noticed this a minute ago.. (again in the same code example) - the
ref bean examples seem to be closed out incorrectly. (two instances -
see below). I guess this illustrates how dangerous cut/paste/modify
can be. :D
<!-- results in a setSomeMap(java.util.Map) call -->
<property name="someMap">
<map>
<entry key="yup an entry">
<value>just some string</value>
</entry>
<entry key="yup a ref">
<ref bean="myDataSource"</ref> // <!---------
CLOSED OUT INCORRECTLY
</entry>
</map>
</property>
<!-- results in a setSomeSet(java.util.Set) call -->
<property name="someSet">
<set>
<value>just some string</value>
<ref bean="myDataSource"</ref> // <!-- CLOSED OUT
INCORRECTLY
</map>
</property>
On Aug 5, 2004, at 12:29 PM, Colin Sampaleanu wrote:
> Thanks, fixed...
>
> Tim Kettering wrote:
>
>>
>> Don't know if this already has been reported, but on the online user
>> reference document in section 3.3.2, the code example seems to have
>> the wrong closing tag. (should be </set> not </map>)
>>
>> <!-- results in a setSomeSet(java.util.Set) call -->
>> <property name="someSet">
>> <set>
>> <value>just some string</value>
>> <ref bean="myDataSource"</ref>
>> </map>
>> </property>
>>
>>
>>
>> -------------------------------------------------------
>> This SF.Net email is sponsored by OSTG. Have you noticed the changes
>> on
>> Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
>> one more big change to announce. We are now OSTG- Open Source
>> Technology
>> Group. Come see the changes on the new OSTG site. www.ostg.com
>> _______________________________________________
>> Springframework-developer mailing list
>> Spr...@li...
>> https://lists.sourceforge.net/lists/listinfo/springframework-developer
>
>
>
>
>
> -------------------------------------------------------
> This SF.Net email is sponsored by OSTG. Have you noticed the changes on
> Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
> one more big change to announce. We are now OSTG- Open Source
> Technology
> Group. Come see the changes on the new OSTG site. www.ostg.com
> _______________________________________________
> Springframework-developer mailing list
> Spr...@li...
> https://lists.sourceforge.net/lists/listinfo/springframework-developer
>
|
|
From: Darren D. <da...@da...> - 2004-08-05 22:29:55
|
=2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thursday 05 August 2004 21:47, Tim Kettering wrote: > Just noticed this a minute ago.. (again in the same code example) - the > ref bean examples seem to be closed out incorrectly. (two instances - > see below). fixed too. Thanks Tim. =2D --=20 Darren Davison Public Key: http://www.davison.uk.net/pages/key.htm =2D----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQFBErTdKLMLAN01aw0RAjv+AJ9ZA38KQ8dOEbm/H9Hs51Ani/jkewCbBB35 t371Pvd0emPiVMgP7bWbI4Y=3D =3DSpIv =2D----END PGP SIGNATURE----- |