Created
April 8, 2011 12:19
-
-
Save hellectronic/909724 to your computer and use it in GitHub Desktop.
Eventbus configuration with Spring
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<bean id="eventbusInit" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean"> | |
<property name="targetObject" value="#{@systemProperties}" /> | |
<property name="targetMethod" value="putAll" /> | |
<property name="arguments"> | |
<util:properties> | |
<prop key="org.bushe.swing.event.swingEventServiceClass">org.bushe.swing.event.ThreadSafeEventService</prop> | |
</util:properties> | |
</property> | |
</bean> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment