Enabling Non-Spring Libraries to Access Spring Boot Components: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 58: Line 58:
</syntaxhighlight>
</syntaxhighlight>


The Spring component exposes itself via a static member variable, during its Spring initialization cycle:
The Spring component exposes itself via a static member variable, during its initialization cycle:


<syntaxhighlight lang='java'>
<syntaxhighlight lang='java'>
Line 92: Line 92:
</syntaxhighlight>
</syntaxhighlight>


The Spring Boot runtime should implement a Spring component whose job is to configure a dedicated class in the dependency package. This solution assumes that the dependency package "cooperates" and we can code in it. The dedicated class in the dependency package is conventionally named SpringApplicationContextAccess:
Note that the dependency project should be configured with "compile only" access to Spring Framework API packages "org.springframework:spring-beans" and "org.springframework:spring-context". A way to do this that does not involve Spring Boot dependency management is described here: [[Gradle_Spring_dependency-management_Plugin#Overview|Spring dependency-management Plugin for Gradle]].


<syntaxhighlight lang='java'>
<syntaxhighlight lang='groovy'>
package playground.springboot.dependency;
dependencies {
 
import org.springframework.context.ApplicationContext;
 
public class SpringApplicationContextAccess {
 
  private static ApplicationContext APPLICATION_CONTEXT;
   
  public static void installApplicationContext(ApplicationContext ac) {
       
    APPLICATION_CONTEXT = ac;
  }
 
  /**
  * Use this method to explicitly pull the bean from the context.
  *
  * @return may return null if no such bean exists in the application context.
  *
  * @throws IllegalStateException if we encounter bad state because the initialization was not performed.
  */
  public static <T> T getBean(Class<T> type) throws IllegalStateException {
     
    if (APPLICATION_CONTEXT == null) {
       
      throw new IllegalStateException("access to Spring ApplicationContext has not been configured");
    }
   
    return APPLICATION_CONTEXT.getBean(type);
  }
}
</syntaxhighlight>
 
Note that the dependency project should be configured with "compile only" access to Spring Framework API packages "org.springframework:spring-beans" and "org.springframework:spring-context". A way to do this that does not involve Spring Boot dependency management is described here: [[Gradle_Spring_dependency-management_Plugin#Overview|Spring dependency-management Plugin for Gradle]].
 
The Spring Boot runtime is supposed to configure SpringApplicationContextAccess for the dependency, via a SpringApplicationContextConfiguratorForDependencies component., early in its life cycle. The simplest way to do this is when the component is initialized so it has access to the application context:


<syntaxhighlight lang='java'>
    compileOnly('org.springframework:spring-beans')
@Component
    compileOnly('org.springframework:spring-context')
public class SpringApplicationContextConfiguratorForDependencies {
 
  @Autowired
  public SpringApplicationContextConfiguratorForDependencies(ApplicationContext applicationContext) {
 
    SpringApplicationContextAccess.installApplicationContext(applicationContext);
  }
}
</syntaxhighlight>
 
Because SpringApplicationContextConfiguratorForDependencies is a @Component, thus by default a singleton, its instance will be initialized upon Spring Boot application start and as part of its own initialization sequence, it will install the active application context into a static member variable of the dependency package.
 
<span id='@ComponentScan_Configuration'></span>The Spring Boot application should also configure the component scan of its application context to detect components in the dependency:
 
<syntaxhighlight lang='java'>
@SpringBootApplication
//
// this is necessary to enable component scan in the dependency package
//
@ComponentScan(basePackageClasses = {MainApplication.class, Dependency.class})
public class MainApplication  {
 
  ...
}
</syntaxhighlight>
 
Finally, the non-spring dependency should explicitly pull the component it needs from the application context, with getBean(). That will trigger bean initialization and will kick off necessary dependency injection.
 
<syntaxhighlight lang='java'>
package playground.springboot.dependency;
 
public class Dependency {
 
  private DependencySpringComponentA springComponent;
 
  public Dependency() {
 
    springComponent = SpringApplicationContextAccess.getBean(DependencySpringComponentA.class);
  }
 
  public void run() {
 
    System.out.println(this + " is running with Spring component " + springComponent);
 
    springComponent.run();
  }
}
}
</syntaxhighlight>
</syntaxhighlight>


Obviously, DependencySpringComponentA must exist and be a valid Spring component, properly annotated with @Component or similar. It is detected by Spring because we [[#@ComponentScan_Configuration|configured the Spring Boot application context to @ComponentScan the dependency package]].
DependencySpringComponent must exist and be a valid Spring component, properly annotated with @Component or similar. It is detected by Spring because we [[#@ComponentScan_Configuration|configured the Spring Boot application context to @ComponentScan the dependency package]].

Revision as of 22:10, 7 November 2018

Internal

Overview

This article describes a possible approach to give a non-Spring library runtime access to Spring Boot runtime components and inject its own Spring components into the Spring Boot runtime application context.

Playground Example

https://github.com/ovidiuf/playground/tree/master/spring/spring-boot/spring-boot-with-dependency

Approach

Spring Boot Application Changes

From the Spring Boot application's perspective, the (only) active step required to enable component scanning for the dependency package in order to detect the Spring components that come in the dependency library, is to add an extra @ComponentScan annotation in its main class, configured with the dependency library package. Note that @ComponentScans (plural) is required because the Spring Boot application implicitly declares a @ComponentScan for its own package, as part of the @SpringBootApplication annotation:

@SpringBootApplication
@ComponentScans(@ComponentScan(basePackages = "some.experimental.dependency"))
public class MainApplication {
...
}

Dependency Library Changes

The dependency library contains Spring components it wants managed by the container, while it is bootstrapped by the SpringBoot application in a non-Spring way: Spring Boot application invokes new on one of the dependency library's classes. This is a possible way to get a dependency library component hooked into the Spring application context:

package some.experimental.dependency;

/**
 * This is a dependency class that is invoked into by the SpringBoot framework directly, without an assumption of
 * Spring component availability: the Dependency class instance is created with new or by reflection. The situation 
 * is similar to a Spring Boot application instantiating a JPA Converter class specified in a third party library.
 * The Dependency instance gets the Spring-managed singleton instance via a static method call. 
 */
public class Dependency {

  private DependencySpringComponent springComponent;

  public Dependency() {

    //
    // The DependencySpringComponent singleton is initialized by Spring by now and installed into the application
    // context; we get it by calling into DependencySpringComponent static method:
    //
    springComponent = DependencySpringComponent.getSpringBeanInstance();
  }

  public void run() {

    springComponent.run();
  }
}

The Spring component exposes itself via a static member variable, during its initialization cycle:

package some.experimental.dependency;
...
/**
 * This is a Spring bean that is identified by component scanning performed by the main application and is installed
 * into the Spring application context. As part of its initialization cycle, it retains a reference to the application
 * context and it is exposing itself via a static method that has access to the application context.
 */
@Component
public class DependencySpringComponent {

  private static ApplicationContext APPLICATION_CONTEXT;

  @Autowired
  public DependencySpringComponent(ApplicationContext applicationContext) {
    APPLICATION_CONTEXT = applicationContext;
  }

  public static DependencySpringComponent getSpringBeanInstance() {
    if (APPLICATION_CONTEXT == null) {
      throw new IllegalStateException("access to Spring ApplicationContext has not been configured");
    }

    return APPLICATION_CONTEXT.getBean(DependencySpringComponent.class);
  }

  public void run() {
    ...
  }
}

Note that the dependency project should be configured with "compile only" access to Spring Framework API packages "org.springframework:spring-beans" and "org.springframework:spring-context". A way to do this that does not involve Spring Boot dependency management is described here: Spring dependency-management Plugin for Gradle.

dependencies {

    compileOnly('org.springframework:spring-beans')
    compileOnly('org.springframework:spring-context')
}

DependencySpringComponent must exist and be a valid Spring component, properly annotated with @Component or similar. It is detected by Spring because we configured the Spring Boot application context to @ComponentScan the dependency package.