Java frameworks: Spring vs Quarkus
Introducing some of the most well-known and widely adopted frameworks.
After youâve mastered your ints and hashmaps, you probably want to know how Java software is developed in the real world. Well, you probably wonât write as much code as you think. Most programming problems have already been solved in frameworks. But which are the most well-known Java frameworks? Letâs find out.

For most Java developers, frameworks are a part of everyday life.
Perhaps youâre just learning Java and you want to get the lay of the land, or youâre an operations engineer who wants to understand more about those Java workloads youâre running.
Well, here are the frameworks you will probably see in modern Java development.
Why frameworks?
A good framework helps you build solid foundations for your application and means that you donât need to âreinvent the wheelâ for every bit of functionality you need.
(We might think that we can forge a piece of metal into something that turns round and round, but itâs easier and cheaper to just buy a wheel.)
Of course, you can still write an app from scratch without a framework. But in most companies â especially larger ones â youâll see frameworks in use.
Why?
Because a framework provides a common way to write an application. It helps developers work together, and it reduces the amount of boilerplate code that you need to write.
Letâs see two of the most well-known Java frameworks in use today: Spring and Quarkus.
đ Spring
Spring is an umbrella brand for a whole bunch of frameworks and libraries for Java. Specifically many new Java projects these days start on Spring Boot:
Website | https://spring.io/projects/spring-boot |
Stargazers | 61,000+ |
GitHub | https://github.com/spring-projects/spring-boot |
License | Apache 2.0 |
Examples | GoThinkster RealWorld, Spring Petclinic |
Spring started out as a dependency injection framework, but now itâs much more than that. The various projects in Spring help Java developers to do things like connect to a database, or write reactive (asynchronous) applications.
Letâs dive in to Spring.
What is Spring? Whatâs inside the box?
Spring has many projects, but the most well-known ones are:
-
Spring Framework. This is the main project, and is the basis for everything else in the Spring universe. Spring Framework is a dependency injection container, and a bunch of utilities.
-
Spring Boot. Spring Boot is the modern way to create a Spring application. You donât need to use Boot to create a Spring app. But most people do, because itâs easier! It makes it easy to âbootstrapâ a Spring project (it configures your Spring Framework container and auto-configures lots of third-party libraries too.)
The are lots of other projects under the âSpringâ name. Some of them help you work with data (Spring Data), write batch processing programs (Spring Batch), or create REST services (Spring REST).
What do you need to know?
What should you know about Spring?
-
Spring enables the Inversion-of-Control design pattern. Inside your application, Spring creates a virtual âcontainerâ called the Application Context. Inside the container, it creates objects from your classes, and then wires them up together (simple, right?)
-
Itâs stable and well-documented. Spring is supported by VMware, who employ developers that work on Spring and keep it patched and up-to-date.
-
Big community. There are almost 200,000 questions about Spring on Stack Overflow, an annual Spring conference, and lots of blog posts to learn from.
-
Good for cloud-native microservices. Spring Boot helped spread the trend of running Java applications without an application server. Spring Boot builds your application to a single
.jar
file. This makes it easier to implement microservices. -
The inertia effect. Spring is used by lots of developers, so⊠it gets used by even more developers. If you know Spring, you wonât have a problem finding a job in Java today.
How to develop apps with Spring Boot
Most people start with Spring Boot. Itâs the easiest way to start developing a Spring application:
-
Generate your app. Go to start.spring.io, use the application generator. Add the Spring Web dependency. This generates a Spring Boot application with an embedded web server (so you can create APIs).
-
Write your code. Load the project into your IDE. Add annotations to your code when you need Spring to do something.
-
Compile your app to a JAR file. Use the Maven plugin to compile your application into a single JAR file.
-
Deploy and run it. Run the packaged JAR file on a virtual machine with Java installed, run in the cloud (e.g. deploy it onto AWS Elastic Beanstalk) or package it into a container image and run on Kubernetes.
â Quarkus
Quarkus is a framework for developing small, fast Java apps.
Website | https://quarkus.io |
Stargazers | 10,000+ |
GitHub | https://github.com/quarkusio/quarkus |
License | Apache 2.0 |
Examples | quarkus-quickstarts |
Quarkus consists of a runtime âcoreâ which you use to develop your application.
Then you add extensions which give you features and functionality you want to add to your app.
What is Quarkus? Whatâs inside the box?
So what is Quarkus, really? When you create apps with it, what components do you use?
-
Quarkus Core. This is the runtime core which helps you build the scaffolding for your app. It manages the lifecycle of your application and handles capabilities like configuration management, etc.
-
Reactive Engine. Under the hood, Quarkus uses a tool called Vert.x to manage tasks from the various internal components. Vert.x is a Java toolkit for creating reactive applications. It helps applications to perform some tasks quicker, by allowing the application to work on another task, while itâs waiting for the result of another task. (Itâs a bit more complicated than this, but you can read more.)
-
Quarkus Extensions. To add a framework or library to your Quarkus app, you need to add an extension. There are a growing number of extensions. For example, there is a JPA extension which lets you add Hibernate, so that you can save data to a database. Or, you can use the Arc extension to add support for CDI (Contexts & Dependency Injection).
What do you need to know?
-
Quarkus optimises your app at build time. Quarkus uses a special build process, which removes some unused code and classes. It also tries to do some of your appâs initialisation work upfront during the build, so that the compiled app has to do less work on startup.
-
Uses less memory, starts up faster. Some tests have shown that Quarkus uses less memory at runtime and starts up quicker. This means that itâs a good choice for developing microservices.
-
Compiles to a native binary on Linux. A Quarkus application can be compiled to a native binary on Linux. This means that your application can run on a Linux system without needing to run inside the Java Virtual Machine (JVM), so it can be much smaller and faster.
-
Uses Java standards that you might already know. Quarkus lets you code using some well-known Java standards, like CDI, JPA, JAX-RS and MicroProfile.
-
Live coding. While youâre developing, Quarkus can automatically compile your code changes and reload your application, without you having to stop and start it yourself. Itâs very fast, and feels just like you are developing a PHP or Node.js app.
-
Tooling to create containers. The Quarkus build tooling lets you easily create a container (Docker) image for your application.
How to develop apps with Quarkus
To get started with Quarkus, you can create a skeleton project and add the extensions that you need.
Hereâs how to do it:
-
Generate your app. Go to code.quarkus.io to generate a new Quarkus application. Add the capabilities you want to your app, by choosing Extensions. Download the source code as a ZIP file.
-
Write your code. Import the source code into your IDE. Write your code.
-
Build your application to a JAR or native binary. Use the Quarkus Maven Plugin to package your app, and optionally into a native binary and/or into a container.
-
Deploy and run it. Run it on a cloud provider, Kubernetes cluster, FaaS/serverless platform (like AWS Lambda or Azure Functions) or just a plain old virtual machine.
Wrapping up
Two of the biggest Java frameworks in use today are Spring (well, specifically Spring Boot) and Quarkus.
If you want to understand Java, then try to create a simple application in either of these two frameworks. It will give you a better idea of how Java programs are written in the real world.
Of course, there are many more frameworks in Java; too numerous to cover here. (But thatâs maybe an article for another day!)
Happy Java programming.