Codes are a puzzle


Exploring Synthetic Beans in Quarkus: A Powerful Extension Mechanism

In the world of Quarkus, the realm of dependency injection is rich and versatile, offering developers a multitude of tools to manage and control beans. One such tool is the concept of synthetic beans. Synthetic beans are a powerful extension mechanism that allows you to register beans whose attributes are not derived from a Java class, method, or field. Instead, all the attributes of a synthetic bean are defined by an extension.

In this article, we’ll take a deep dive into the world of synthetic beans in Quarkus. We’ll explore the need for synthetic beans, their practical applications, and how to create and use them in your Quarkus applications.

Understanding Synthetic Beans

In Quarkus, beans are the building blocks of your application, managed by the Contexts and Dependency Injection (CDI) framework. Typically, CDI beans are Java classes that are annotated with various CDI annotations such as @ApplicationScoped, @RequestScoped, or @Inject. These annotations allow CDI to automatically manage the lifecycle and injection of beans.

However, there are situations where you may need to register a bean that doesn’t neatly fit into the traditional CDI model. This is where synthetic beans come into play. Synthetic beans are created by extensions and have their attributes entirely defined by these extensions. In the world of regular CDI, you would achieve this using the AfterBeanDiscovery.addBean() and SyntheticComponents.addBean() methods. In Quarkus, this is accomplished using SyntheticBeanBuildItem.

When Do You Need Synthetic Beans?

So, when might you need to use synthetic beans in Quarkus? Synthetic beans are a powerful tool when:

  1. Integrating Third-Party Libraries: You’re working with a third-party library that doesn’t have CDI annotations but needs to be integrated into your CDI-based application. Synthetic beans allow you to bridge this gap.

  2. Dynamic Bean Registration: You need to register beans dynamically at runtime, depending on configuration or other factors. Synthetic beans give you the flexibility to create and register beans on-the-fly.

  3. Customized Bean Management: You require fine-grained control over the scope and behavior of a bean that can’t be achieved with standard CDI annotations.

  4. Implementing Specialized Beans: You want to create specialized beans with unique attributes that don’t correspond to traditional Java classes or methods.

  5. Mocking Dependencies for Testing: Synthetic beans provide a useful way to mock out dependencies and inject mock implementations for testing purposes.

SynthesisFinishedBuildItem

The SynthesisFinishedBuildItem is used to indicate that the CDI bean discovery and registration process has completed. This allows extensions to know when it is safe to interact with the beans that have been registered.

For example:

1@BuildStep  
2void onSynthesisFinished(SynthesisFinishedBuildItem synthesisFinished){
3    // CDI bean registration is complete, can now safely interact with beans
4    }

SyntheticBeansRuntimeInitBuildItem

The SyntheticBeansRuntimeInitBuildItem is used to register a callback that will be invoked at runtime after all synthetic beans have been initialized. This is useful if you need to perform additional initialization logic involving synthetic beans.

For example:

1@BuildStep
2SyntheticBeansRuntimeInitBuildItem initSyntheticBeans(){
3
4    return new SyntheticBeansRuntimeInitBuildItem(ids->{
5    // Perform logic with initialized synthetic beans
6    });
7
8    }

The callback passed to SyntheticBeansRuntimeInitBuildItem will receive a Set<Integer> containing the IDs of all initialized synthetic beans.

So in summary, SynthesisFinishedBuildItem indicates bean discovery is done, while SyntheticBeansRuntimeInitBuildItem allows initializing logic depending on synthetic beans.

Creating Synthetic Beans with SyntheticBeanBuildItem

In Quarkus, creating synthetic beans is a straightforward process, thanks to the SyntheticBeanBuildItem class. Let’s walk through the steps to create and use a synthetic bean:

  1. Create the Synthetic Bean Class: Start by defining the synthetic bean class. This class will be the foundation for your synthetic bean.
1package com.iqnev;
2
3public class MySyntheticBean {
4
5  // Define the behavior and attributes of your synthetic bean
6  public void printMessage() {
7    System.out.println("Hello from synthetic bean!");
8  }
9}
  1. Create a Quarkus Extension: You’ll need to create a Quarkus extension to register your synthetic bean. This extension class will use SyntheticBeanBuildItem to configure your bean.

Bytecode Generation Approach

 1package com.iqnev;
 2
 3import io.quarkus.arc.deployment.SyntheticBeanBuildItem;
 4
 5public class MySyntheticBeanExtension {
 6
 7  @BuildStep
 8  SyntheticBeanBuildItem syntheticBean() {
 9    return SyntheticBeanBuildItem
10        .configure(MySyntheticBean.class)
11        .scope(ApplicationScoped.class)
12        .creator(mc -> {
13          mc.returnValue(new MySyntheticBean());
14        })
15        .done();
16  }
17}

The .creator() method on SyntheticBeanBuildItem is used to generate the bytecode that will create instances of the synthetic bean at runtime.

The argument passed to .creator() is a Consumer<MethodCreator> which allows generating Java bytecode inside a method.

In this example:

  1. mc is the MethodCreator instance
  2. mc.returnValue(new MySyntheticBean()) generates the bytecode to create a new instance of MySyntheticBean and return it from the method.

So essentially, we are telling Quarkus to generate a method that looks something like:

1MySyntheticBean createSyntheticBean(){
2    return new MySyntheticBean();
3    }

This generated method will then be called to instantiate the MySyntheticBean when it needs to be injected or used.

The reason bytecode generation is used is that synthetic beans do not correspond to real Java classes/methods, so we have to explicitly generate a method to instantiate them

The output of SyntheticBeanBuildItem is bytecode recorded at build time. This limits how instances are created at runtime. Common options are:

  1. Generate bytecode directly via .creator()
  2. Use a BeanCreator subclass
  3. Produce instance via @Recorder method

Recorder Approach

The @Record and .runtimeValue() approaches are alternate ways of providing instances for synthetic beans in Quarkus.

This allows you to instantiate the synthetic bean via a recorder class method annotated with @Record(STATIC_INIT). For example:

 1
 2@Recorder
 3public class MyRecorder {
 4
 5  @Record(STATIC_INIT)
 6  public MySyntheticBean createBean() {
 7    return new MySyntheticBean();
 8  }
 9
10}
11
12  @BuildStep
13  SyntheticBeanBuildItem syntheticBean(MyRecorder recorder) {
14    return SyntheticBeanBuildItem
15        .configure(MySyntheticBean.class)
16        .runtimeValue(recorder.createBean());
17  }

Here the .runtimeValue() references the recorder method to instantiate the bean.

This allows passing a RuntimeValue directly to provide the synthetic bean instance.

For example:

 1@BuildStep 
 2SyntheticBeanBuildItem syntheticBean(){
 3
 4    RuntimeValue<MySyntheticBean> bean= //...
 5
 6    return SyntheticBeanBuildItem
 7    .configure(MySyntheticBean.class)
 8    .runtimeValue(bean);
 9
10    }

The RuntimeValue could come from a recorder, supplier, proxy etc.

So in summary:

  • @Record is one approach to generate the RuntimeValue
  • .runtimeValue() sets the RuntimeValue on the SyntheticBeanBuildItem

They both achieve the same goal of providing a runtime instance, just in slightly different ways.

When it comes to providing runtime instances for synthetic beans in Quarkus, I would consider using recorders (via @Record) to be a more advanced approach compared to directly generating bytecode with .creator() or supplying simple RuntimeValues.

Here are some reasons why using recorders can be more advanced:

  • More encapsulation - The logic to instantiate beans is contained in a separate recorder class rather than directly in build steps. This keeps build steps lean.
  • Reuse - Recorder methods can be reused across multiple synthetic beans rather than rewriting creator logic.
  • Runtime data - Recorder methods execute at runtime so they can leverage runtime resources, configs, services etc. to construct beans.
  • Dependency injection - Recorder methods can inject other services.
  • Life cycle control - Recorder methods annotated with @Record(STATIC_INIT) or @Record(RUNTIME_INIT) give more control over bean instantiation life cycle.
  • Managed beans - Beans instantiated inside recorders can themselves be CDI managed beans.

So in summary, recorder methods provide more encapsulation, flexibility and access to runtime data and services for instantiating synthetic beans. They allow for more advanced bean production logic compared to direct bytecode generation.

However, direct bytecode generation with .creator() can still be useful for simple cases where recorders may be overkill. But as synthetic bean needs grow, recorders are a more powerful and advanced approach.

Note

It is possible to configure a synthetic bean in Quarkus to be initialized during the RUNTIME_INIT phase instead of the default STATIC_INIT phase.

Here is an example:

 1@BuildStep
 2@Record(RUNTIME_INIT)
 3SyntheticBeanBuildItem lazyBean(BeanRecorder recorder){
 4
 5    return SyntheticBeanBuildItem
 6    .configure(MyLazyBean.class)
 7    .setRuntimeInit() // initialize during RUNTIME_INIT
 8    .runtimeValue(recorder.createLazyBean());
 9
10    }

The key points are:

  • Use setRuntimeInit() on the SyntheticBeanBuildItem to mark it for RUNTIME_INIT
  • The recorder method must be annotated with @Record(RUNTIME_INIT)
  • The runtime init synthetic beans cannot be accessed during STATIC_INIT

So in summary, synthetic beans can be initialized lazily during RUNTIME_INIT for cases where eager STATIC_INIT instantiation is not needed. This allows optimizing startup time.

  1. Use the Synthetic Bean: Now that your synthetic bean is registered, you can inject and use it in your application.
 1package com.iqnev;
 2
 3import javax.inject.Inject;
 4
 5public class MyBeanUser {
 6
 7  @Inject
 8  MySyntheticBean mySyntheticBean;
 9
10  public void useSyntheticBean() {
11    // Use the synthetic bean in your code
12    mySyntheticBean.printMessage();
13  }
14}
  1. Running Your Application: Build and run your Quarkus application as usual, and the synthetic bean will be available for injection and use.

Conclusion

Synthetic beans in Quarkus provide a powerful mechanism for integrating external libraries, dynamically registering beans, and customizing bean behavior in your CDI-based applications. These beans, whose attributes are defined by extensions rather than Java classes, offer flexibility and versatility in managing dependencies.

As we’ve explored in this article, creating and using synthetic beans in Quarkus is a straightforward process. By leveraging SyntheticBeanBuildItem and Quarkus extensions, you can seamlessly bridge the gap between traditional CDI and more specialized or dynamic bean registration requirements.

In the ever-evolving landscape of Java frameworks, Quarkus continues to stand out by offering innovative solutions like synthetic beans, making it a compelling choice for modern, efficient, and flexible application development. Embrace the power of synthetic beans in Quarkus, and take your dependency injection to the next level!