Quarkus - Quarkus Extension for Spring DI API

While users are encouraged to use CDI annotations for injection, Quarkus provides a compatibility layer for Spring dependency injection in the form of the spring-di extension.

This guide explains how a Quarkus application can leverage the well known Dependency Injection annotations included in the Spring Framework.

Prerequisites

To complete this guide, you need:

  • less than 15 minutes

  • an IDE

  • JDK 1.8+ installed with JAVA_HOME configured appropriately

  • Apache Maven 3.5.3+

Solution

We recommend that you follow the instructions in the next sections and create the application step by step.However, you can go right to the completed example.

Clone the Git repository: git clone https://github.com/quarkusio/quarkus-quickstarts.git, or download an archive.

The solution is located in the spring-di-quickstart directory.

Creating the Maven project

First, we need a new project. Create a new project with the following command:

  1. mvn io.quarkus:quarkus-maven-plugin:1.0.0.CR1:create \
  2. -DprojectGroupId=org.acme \
  3. -DprojectArtifactId=spring-di-quickstart \
  4. -DclassName="org.acme.spring.di.GreeterResource" \
  5. -Dpath="/greeting" \
  6. -Dextensions="spring-di"
  7. cd spring-di-quickstart

This command generates a Maven project with a REST endpoint and imports the spring-di extension.

Add beans using Spring annotations

Let’s proceed to create some beans using various Spring annotations.

First we will create a StringFunction interface that some of our beans will implement and which will be injected into another bean later on.Create a src/main/java/org/acme/spring/di/StringFunction.java file and set the following content:

  1. package org.acme.spring.di;
  2. import java.util.function.Function;
  3. public interface StringFunction extends Function<String, String> {
  4. }

With the interface in place, we will add an AppConfiguration class which will use the Spring’s Java Config style for defining a bean.It will be used to create a StringFunction bean that will capitalize the text passed as parameter.Create a src/main/java/org/acme/spring/di/AppConfiguration.java file with the following content:

  1. package org.acme.spring.di;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. @Configuration
  5. public class AppConfiguration {
  6. @Bean(name = "capitalizeFunction")
  7. public StringFunction capitalizer() {
  8. return String::toUpperCase;
  9. }
  10. }

Now we define another bean that will implement StringFunction using Spring’s stereotype annotation style.This bean will effectively be a no-op bean that simply returns the input as is.Create a src/main/java/org/acme/spring/di/NoOpSingleStringFunction.java file and set the following content:

  1. package org.acme.spring.di;
  2. import org.springframework.stereotype.Component;
  3. @Component("noopFunction")
  4. public class NoOpSingleStringFunction implements StringFunction {
  5. @Override
  6. public String apply(String s) {
  7. return s;
  8. }
  9. }

Quarkus also provides support for injecting configuration values using Spring’s @Value annotation.To see that in action, first edit the src/main/resources/application.properties with the following content:

  1. # Your configuration properties
  2. greeting.message = hello

Next create a new Spring bean in src/main/java/org/acme/spring/di/MessageProducer.java with the following content:

  1. package org.acme.spring.di;
  2. import org.springframework.beans.factory.annotation.Value;
  3. import org.springframework.stereotype.Service;
  4. @Service
  5. public class MessageProducer {
  6. @Value("${greeting.message}")
  7. String message;
  8. public String getPrefix() {
  9. return message;
  10. }
  11. }

The final bean we will create ties together all the previous beans.Create a src/main/java/org/acme/spring/di/GreeterBean.java file and copy the following content:

  1. package org.acme.spring.di;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.beans.factory.annotation.Qualifier;
  4. import org.springframework.beans.factory.annotation.Value;
  5. import org.springframework.stereotype.Component;
  6. @Component
  7. public class GreeterBean {
  8. private final MessageProducer messageProducer;
  9. @Autowired
  10. @Qualifier("noopFunction")
  11. StringFunction noopStringFunction;
  12. @Autowired
  13. @Qualifier("capitalizeFunction")
  14. StringFunction capitalizerStringFunction;
  15. @Value("${greeting.suffix:!}")
  16. String suffix;
  17. public GreeterBean(MessageProducer messageProducer) {
  18. this.messageProducer = messageProducer;
  19. }
  20. public String greet(String name) {
  21. final String initialValue = messageProducer.getPrefix() + " " + name + suffix;
  22. return noopStringFunction.andThen(capitalizerStringFunction).apply(initialValue);
  23. }
  24. }

In the code above, we see that both field injection and constructor injection are being used (note that constructor injection does not need the @Autowired annotation since there is a single constructor).Furthermore, the @Value annotation on suffix has also a default value defined, which in this case will be used since we have not defined greeting.suffix in application.properties.

Update the JAX-RS resource

Open the src/main/java/org/acme/spring/di/GreeterResource.java file and update it with the following content:

  1. package org.acme.spring.di;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import javax.ws.rs.GET;
  4. import javax.ws.rs.Path;
  5. import javax.ws.rs.Produces;
  6. import javax.ws.rs.core.MediaType;
  7. @Path("/greeting")
  8. public class GreeterResource {
  9. @Autowired
  10. GreeterBean greeterBean;
  11. @GET
  12. @Produces(MediaType.TEXT_PLAIN)
  13. public String hello() {
  14. return greeterBean.greet("world");
  15. }
  16. }

Update the test

We also need to update the functional test to reflect the changes made to the endpoint.Edit the src/test/java/org/acme/spring/di/GreetingResourceTest.java file and change the content of the testHelloEndpoint method to:

  1. import io.quarkus.test.junit.QuarkusTest;
  2. import org.junit.jupiter.api.Test;
  3. import static io.restassured.RestAssured.given;
  4. import static org.hamcrest.CoreMatchers.is;
  5. @QuarkusTest
  6. public class GreetingResourceTest {
  7. @Test
  8. public void testHelloEndpoint() {
  9. given()
  10. .when().get("/greeting")
  11. .then()
  12. .statusCode(200)
  13. .body(is("HELLO WORLD!"));
  14. }
  15. }

Package and run the application

Run the application with: ./mvnw compile quarkus:dev.Open your browser to http://localhost:8080/greeting.

The result should be: HELLO WORLD!.

Run the application as a native

You can of course create a native image using instructions similar to this guide.

Important Technical Note

Please note that the Spring support in Quarkus does not start a Spring Application Context nor are any Spring infrastructure classes run.Spring classes and annotations are only used for reading metadata and / or are used as user code method return types or parameter types.What that means for end users, is that adding arbitrary Spring libraries will not have any effect. Moreover Spring infrastructureclasses (like org.springframework.beans.factory.config.BeanPostProcessor for example) will not be executed.

More Spring guides

Quarkus supports additional Spring compatibility features. See the following guides for more details: