From: Rick E. <spr...@us...> - 2006-04-20 11:27:56
|
Update of /cvsroot/springframework/spring/docs/reference/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28438/docs/reference/src Modified Files: jmx.xml Log Message: [SPR-1935] Added clarification that the MBeanExporter must not be lazily initialized if the exporting is to occur. Index: jmx.xml =================================================================== RCS file: /cvsroot/springframework/spring/docs/reference/src/jmx.xml,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** jmx.xml 18 Apr 2006 11:10:53 -0000 1.20 --- jmx.xml 20 Apr 2006 11:27:42 -0000 1.21 *************** *** 139,142 **** --- 139,146 ---- <bean id="mbeanServer" class="org.springframework.jmx.support.MBeanServerFactoryBean"/> + ]]><lineannotation><!-- + this bean needs to be eagerly pre-instantiated in order for the exporting to occur; + this means that it must <emphasis role="bold">not</emphasis> be marked as lazily initialized + --></lineannotation><![CDATA[ <bean id="exporter" class="org.springframework.jmx.export.MBeanExporter"> <property name="beans"> |