/** * JBoss, Home of Professional Open Source * Copyright 2009 Red Hat Inc. and/or its affiliates and other * contributors as indicated by the @author tags. All rights reserved. * See the copyright.txt in the distribution for a full listing of * individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * ~ * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.infinispan.spring.support.remote; import java.util.Properties; import org.infinispan.client.hotrod.RemoteCacheManager; import org.infinispan.spring.AbstractRemoteCacheManagerFactory; import org.springframework.beans.factory.DisposableBean; import org.springframework.beans.factory.FactoryBean; import org.springframework.beans.factory.InitializingBean; /** * <p> * A {@link org.springframework.beans.factory.FactoryBean <code>FactoryBean</code>} for creating an * {@link org.infinispan.client.hotrod.RemoteCacheManager * <code>Infinispan RemoteCacheManager</code>} instance. * </p> * <strong>Configuration</strong><br/> * <p> * A <code>RemoteCacheManager</code> is configured through a {@link java.util.Properties * <code>Properties</code>} object. For an exhaustive list of valid properties to be used see * <code>RemoteCacheManager</code>'s {@link org.infinispan.client.hotrod.RemoteCacheManager * javadocs}. This <code>FactoryBean</code> provides means to either * {@link #setConfigurationProperties(Properties) inject} a user-defined <code>Properties</code> * instance or to * {@link #setConfigurationPropertiesFileLocation(org.springframework.core.io.Resource) set} the * location of a properties file to load those properties from. Note that it is <em>illegal</em> to * use both mechanisms simultaneously. * </p> * <p> * Alternatively or in combination with * {@link #setConfigurationPropertiesFileLocation(org.springframework.core.io.Resource) setting} the * location of a <code>Properties</code> file to load the configuration from, this * <code>FactoryBean</code> provides (typed) setters for all configuration settings. Settings thus * defined take precedence over those defined in the injected <code>Properties</code> instance. This * flexibility enables users to use e.g. a company-wide <code>Properties</code> file containing * default settings while simultaneously overriding select settings whenever special requirements * warrant this.<br/> * Note that it is illegal to use setters in conjunction with * {@link #setConfigurationProperties(Properties) injecting} a <code>Properties</code> instance. * </p> * <p> * In addition to creating a <code>RemoteCacheManager</code> this <code>FactoryBean</code> does also * control that <code>RemoteCacheManagers</code>'s lifecycle by shutting it down when the enclosing * Spring application context is closed. It is therefore advisable to <em>always</em> use this * <code>FactoryBean</code> when creating a <code>RemoteCacheManager</code>. * </p> * * @author <a href="mailto:olaf DOT bergner AT gmx DOT de">Olaf Bergner</a> * * @see org.infinispan.client.hotrod.RemoteCacheManager * @see #destroy() */ public class InfinispanRemoteCacheManagerFactoryBean extends AbstractRemoteCacheManagerFactory implements FactoryBean<RemoteCacheManager>, InitializingBean, DisposableBean { private RemoteCacheManager nativeRemoteCacheManager; // ------------------------------------------------------------------------ // org.springframework.beans.factory.InitializingBean // ------------------------------------------------------------------------ /** * @see org.springframework.beans.factory.InitializingBean#afterPropertiesSet() */ @Override public void afterPropertiesSet() throws Exception { assertCorrectlyConfigured(); this.logger.info("Creating new instance of RemoteCacheManager ..."); final Properties configurationPropertiesToUse = configurationProperties(); this.nativeRemoteCacheManager = new RemoteCacheManager(configurationPropertiesToUse, this.startAutomatically); this.logger.info("Finished creating new instance of RemoteCacheManager"); } // ------------------------------------------------------------------------ // org.springframework.beans.factory.FactoryBean // ------------------------------------------------------------------------ /** * @see org.springframework.beans.factory.FactoryBean#getObject() */ @Override public RemoteCacheManager getObject() throws Exception { return this.nativeRemoteCacheManager; } /** * @see org.springframework.beans.factory.FactoryBean#getObjectType() */ @Override public Class<? extends RemoteCacheManager> getObjectType() { return this.nativeRemoteCacheManager != null ? this.nativeRemoteCacheManager.getClass() : RemoteCacheManager.class; } /** * Always return <code>true</code>. * * @see org.springframework.beans.factory.FactoryBean#isSingleton() */ @Override public boolean isSingleton() { return true; } // ------------------------------------------------------------------------ // org.springframework.beans.factory.DisposableBean // ------------------------------------------------------------------------ /** * {@link org.infinispan.client.hotrod.RemoteCacheManager#stop() <code>stop</code>} the * <code>RemoteCacheManager</code> created by this factory. * * @see org.springframework.beans.factory.DisposableBean#destroy() */ @Override public void destroy() throws Exception { // Being paranoid if (this.nativeRemoteCacheManager != null) { this.nativeRemoteCacheManager.stop(); } } }