Interface IgniteSpringHelper


  • public interface IgniteSpringHelper
    Spring helper which can parse Spring configuration files, interface was introduced to avoid mandatory runtime dependency on Spring framework.
    • Method Detail

      • loadConfigurations

        IgniteBiTuple<Collection<IgniteConfiguration>,​? extends GridSpringResourceContext> loadConfigurations​(URL cfgUrl,
                                                                                                                    String... excludedProps)
                                                                                                             throws IgniteCheckedException
        Loads all grid configurations specified within given configuration file.

        Usually Spring XML configuration file will contain only one Grid definition. Note that Grid configuration bean(s) is retrieved form configuration file by type, so the name of the Grid configuration bean is ignored.

        Parameters:
        cfgUrl - Configuration file path or URL. This cannot be null.
        excludedProps - Properties to exclude.
        Returns:
        Tuple containing all loaded configurations and Spring context used to load them.
        Throws:
        IgniteCheckedException - If grid could not be started or configuration read. This exception will be thrown also if grid with given name has already been started or Spring XML configuration file is invalid.
      • loadConfigurations

        IgniteBiTuple<Collection<IgniteConfiguration>,​? extends GridSpringResourceContext> loadConfigurations​(InputStream cfgStream,
                                                                                                                    String... excludedProps)
                                                                                                             throws IgniteCheckedException
        Loads all grid configurations specified within given configuration input stream.

        Usually Spring XML configuration input stream will contain only one Grid definition. Note that Grid configuration bean(s) is retrieved form configuration input stream by type, so the name of the Grid configuration bean is ignored.

        Parameters:
        cfgStream - Configuration input stream. This cannot be null.
        excludedProps - Properties to exclude.
        Returns:
        Tuple containing all loaded configurations and Spring context used to load them.
        Throws:
        IgniteCheckedException - If grid could not be started or configuration read. This exception will be thrown also if grid with given name has already been started or Spring XML configuration file is invalid.
      • loadConfigurations

        <T> IgniteBiTuple<Collection<T>,​? extends GridSpringResourceContext> loadConfigurations​(URL cfgUrl,
                                                                                                      Class<T> cls,
                                                                                                      String... excludedProps)
                                                                                               throws IgniteCheckedException
        Loads all configurations with given type specified within given configuration file.
        Parameters:
        cfgUrl - Configuration file path or URL. This cannot be null.
        cls - Required type of configuration.
        excludedProps - Properties to exclude.
        Returns:
        Tuple containing all loaded configurations and Spring context used to load them.
        Throws:
        IgniteCheckedException - If configuration could not be read.
      • loadConfigurations

        <T> IgniteBiTuple<Collection<T>,​? extends GridSpringResourceContext> loadConfigurations​(InputStream cfgStream,
                                                                                                      Class<T> cls,
                                                                                                      String... excludedProps)
                                                                                               throws IgniteCheckedException
        Loads all configurations with given type specified within given configuration input stream.
        Parameters:
        cfgStream - Configuration input stream. This cannot be null.
        cls - Required type of configuration.
        excludedProps - Properties to exclude.
        Returns:
        Tuple containing all loaded configurations and Spring context used to load them.
        Throws:
        IgniteCheckedException - If configuration could not be read.
      • loadConfigurations

        <T> IgniteBiTuple<Collection<T>,​? extends GridSpringResourceContext> loadConfigurations​(InputStream cfgStream,
                                                                                                      Class<T> cls,
                                                                                                      boolean expEnabled,
                                                                                                      String... excludedProps)
                                                                                               throws IgniteCheckedException
        Loads all configurations with given type specified within given configuration input stream.
        Parameters:
        cfgStream - Configuration input stream. This cannot be null.
        cls - Required type of configuration.
        expEnabled - Whether Spring bean expressions enabled.
        excludedProps - Properties to exclude.
        Returns:
        Tuple containing all loaded configurations and Spring context used to load them.
        Throws:
        IgniteCheckedException - If configuration could not be read.
      • loadBeanFromAppContext

        <T> T loadBeanFromAppContext​(Object appContext,
                                     String beanName)
                              throws IgniteCheckedException
        Loads bean instance by name from application context.
        Parameters:
        appContext - Sprint application context.
        beanName - Bean name.
        Returns:
        Bean instance.
        Throws:
        IgniteCheckedException - In case of error.
      • userVersion

        String userVersion​(ClassLoader ldr,
                           IgniteLogger log)
        Gets user version for given class loader by checking META-INF/ignite.xml file for userVersion attribute. If ignite.xml file is not found, or user version is not specified there, then default version (empty string) is returned.
        Parameters:
        ldr - Class loader.
        log - Logger.
        Returns:
        User version for given class loader or empty string if no version was explicitly specified.