In fact, this is a 'marker' bean, which tells buffalo how the services configed in the spring. Buffalo will check the spring context if there are beans that has this type, and check the 'services' property.
Just put this bean in spring config xml:
<bean name="buffaloConfigBean1" class="net.buffalo.service.spring.BuffaloServiceConfigurer"> <property name="services"> <map> <entry key="testSpringService1"> <ref bean="testBean"/> </entry> </map> </property> </bean>
Buffalo will check the config automaticaly.
@author michael @version 1.2 @since 1.2alpha2
|
|
|
|