Class MongoClientFactoryBean

java.lang.Object
org.springframework.beans.factory.config.AbstractFactoryBean<com.mongodb.client.MongoClient>
org.springframework.data.mongodb.core.MongoClientFactoryBean
All Implemented Interfaces:
org.springframework.beans.factory.Aware, org.springframework.beans.factory.BeanClassLoaderAware, org.springframework.beans.factory.BeanFactoryAware, org.springframework.beans.factory.DisposableBean, org.springframework.beans.factory.FactoryBean<com.mongodb.client.MongoClient>, org.springframework.beans.factory.InitializingBean, org.springframework.dao.support.PersistenceExceptionTranslator

public class MongoClientFactoryBean extends org.springframework.beans.factory.config.AbstractFactoryBean<com.mongodb.client.MongoClient> implements org.springframework.dao.support.PersistenceExceptionTranslator
Convenient factory for configuring MongoDB.
Author:
Christoph Strobl, Mark Paluch
  • Field Summary

    Fields inherited from class org.springframework.beans.factory.config.AbstractFactoryBean

    logger

    Fields inherited from interface org.springframework.beans.factory.FactoryBean

    OBJECT_TYPE_ATTRIBUTE
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected com.mongodb.MongoClientSettings
    Create MongoClientSettings based on configuration and priority (lower is better).
    protected com.mongodb.client.MongoClient
     
    protected void
    destroyInstance(com.mongodb.client.MongoClient instance)
     
    Class<? extends com.mongodb.client.MongoClient>
     
    void
    setConnectionString(com.mongodb.ConnectionString connectionString)
     
    void
    setCredential(com.mongodb.MongoCredential[] credential)
    Set the list of credentials to be used when creating MongoClient.
    void
    setExceptionTranslator(org.springframework.dao.support.PersistenceExceptionTranslator exceptionTranslator)
    Configures the PersistenceExceptionTranslator to use.
    void
    Configures the host to connect to.
    void
    setMongoClientSettings(com.mongodb.MongoClientSettings mongoClientOptions)
    Set the MongoClientSettings to be used when creating MongoClient.
    void
    setPort(int port)
    Configures the port to connect to.
    void
    setReplicaSet(String replicaSet)
     
    org.springframework.dao.DataAccessException
     

    Methods inherited from class org.springframework.beans.factory.config.AbstractFactoryBean

    afterPropertiesSet, destroy, getBeanFactory, getBeanTypeConverter, getEarlySingletonInterfaces, getObject, isSingleton, setBeanClassLoader, setBeanFactory, setSingleton

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • MongoClientFactoryBean

      public MongoClientFactoryBean()
  • Method Details

    • setMongoClientSettings

      public void setMongoClientSettings(@Nullable com.mongodb.MongoClientSettings mongoClientOptions)
      Set the MongoClientSettings to be used when creating MongoClient.
      Parameters:
      mongoClientOptions -
    • setCredential

      public void setCredential(@Nullable com.mongodb.MongoCredential[] credential)
      Set the list of credentials to be used when creating MongoClient.
      Parameters:
      credential - can be null.
    • setHost

      public void setHost(@Nullable String host)
      Configures the host to connect to.
      Parameters:
      host -
    • setPort

      public void setPort(int port)
      Configures the port to connect to.
      Parameters:
      port -
    • setConnectionString

      public void setConnectionString(@Nullable com.mongodb.ConnectionString connectionString)
    • setReplicaSet

      public void setReplicaSet(@Nullable String replicaSet)
    • setExceptionTranslator

      public void setExceptionTranslator(@Nullable org.springframework.dao.support.PersistenceExceptionTranslator exceptionTranslator)
      Configures the PersistenceExceptionTranslator to use.
      Parameters:
      exceptionTranslator -
    • getObjectType

      public Class<? extends com.mongodb.client.MongoClient> getObjectType()
      Specified by:
      getObjectType in interface org.springframework.beans.factory.FactoryBean<com.mongodb.client.MongoClient>
      Specified by:
      getObjectType in class org.springframework.beans.factory.config.AbstractFactoryBean<com.mongodb.client.MongoClient>
    • translateExceptionIfPossible

      @Nullable public org.springframework.dao.DataAccessException translateExceptionIfPossible(RuntimeException ex)
      Specified by:
      translateExceptionIfPossible in interface org.springframework.dao.support.PersistenceExceptionTranslator
    • createInstance

      protected com.mongodb.client.MongoClient createInstance() throws Exception
      Specified by:
      createInstance in class org.springframework.beans.factory.config.AbstractFactoryBean<com.mongodb.client.MongoClient>
      Throws:
      Exception
    • computeClientSetting

      protected com.mongodb.MongoClientSettings computeClientSetting()
      Create MongoClientSettings based on configuration and priority (lower is better).
      1. mongoClientSettings
      2. connectionString
      3. default MongoClientSettings
      Since:
      3.0
    • destroyInstance

      protected void destroyInstance(@Nullable com.mongodb.client.MongoClient instance) throws Exception
      Overrides:
      destroyInstance in class org.springframework.beans.factory.config.AbstractFactoryBean<com.mongodb.client.MongoClient>
      Throws:
      Exception