I've create a dynamic mbean and I export it with spring into Jboss

Code:
<bean id="exporter" 
  class="org.springframework.jmx.export.MBeanExporter"
  lazy-init="false">
  <property name="beans">
    <map>
      <entry key="bean:name=myConfigBean" value-ref="myConfigBean" />
    </map>
  </property>
</bean>

<bean id="myConfigBean" class="org.comp.myConfigBean" />
My Mbean is showing up in the JBoss JMXConsole...GREAT.

But it isn't calling start....not so great.

Is there a Spring way to invoke the start method in deployment?