Class ClientClasspathXmlConfig

java.lang.Object
com.hazelcast.client.config.ClientConfig
com.hazelcast.client.config.ClientClasspathXmlConfig

public class ClientClasspathXmlConfig
extends ClientConfig
A ClientConfig which is initialized by loading an XML configuration file from the classpath.
  • Constructor Details

    • ClientClasspathXmlConfig

      public ClientClasspathXmlConfig​(String resource)
      Creates a config which is loaded from a classpath resource using the Thread.currentThread() contextClassLoader. The System.properties are used to resolve variables in the XML.
      Parameters:
      resource - the resource, an XML configuration file from the classpath, without the "classpath:" prefix
      Throws:
      IllegalArgumentException - if the resource could not be found
      InvalidConfigurationException - if the XML content is invalid
    • ClientClasspathXmlConfig

      public ClientClasspathXmlConfig​(String resource, Properties properties)
      Creates a config which is loaded from a classpath resource using the Thread.currentThread() contextClassLoader.
      Parameters:
      resource - the resource, an XML configuration file from the classpath, without the "classpath:" prefix
      properties - the Properties to resolve variables in the XML
      Throws:
      IllegalArgumentException - if the resource could not be found or if properties is null
      InvalidConfigurationException - if the XML content is invalid
    • ClientClasspathXmlConfig

      public ClientClasspathXmlConfig​(ClassLoader classLoader, String resource, Properties properties)
      Creates a config which is loaded from a classpath resource.
      Parameters:
      classLoader - the ClassLoader used to load the resource
      resource - the resource, an XML configuration file from the classpath, without the "classpath:" prefix
      properties - the properties used to resolve variables in the XML
      Throws:
      IllegalArgumentException - if classLoader or resource is null, or if the resource is not found
      InvalidConfigurationException - if the XML content is invalid