ここでサンプルコードをスプリング化しようとしています
http://xeiam.com/xchange_examplecode.jsp
public static void main(String[] args) {
// Demonstrate the public market data service
// Use the factory to get the version 2 MtGox exchange API using default settings
Exchange mtGoxExchange = ExchangeFactory.INSTANCE.createExchange(MtGoxExchange.class.getName());
// Interested in the public market data feed (no authentication)
PollingMarketDataService marketDataService = mtGoxExchange.getPollingMarketDataService();
基本的に、PollingMarketDataService または Exchange を Spring Bean として注入しようとしています。
ただし、上記の ExchangeFactory は列挙型であり、これを試したとき:
<beans:bean id="exchangeFactory" class="com.xeiam.xchange.ExchangeFactory" factory-method="valueOf">
<beans:constructor-arg value="INSTANCE"/>
</beans:bean>
<beans:bean id="mtGoxExchange" factory-bean="exchangeFactory" factory-method="createExchange">
<beans:constructor-arg value="com.xeiam.xchange.mtgox.v2.MtGoxExchange"/>
</beans:bean>
ExchangeFactory がヌルです。