Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to take advantage of Quarkus in existing spring boot applications

Tags:

quarkus

How to take advantage of Quarkus in existing spring boot microservices.

I could not find documentation on how to use it for spring framework applications.

like image 300
Mallesh Avatar asked Apr 17 '19 13:04

Mallesh


2 Answers

Spring Boot applications will not work on Quarkus. Quarkus is a different framework that currently supports Spring Dependency Injection annotations, and the most important functionality of Spring Web and Spring Data JPA.

like image 175
geoand Avatar answered Oct 13 '22 12:10

geoand


It is also an option to migrate Spring Boot application to Quarkus. You can find here a detailed guide based on the real migration on one of my microservices: https://dzone.com/articles/spring2quarkus-spring-boot-to-quarkus-migration

like image 43
Triphon Penakov Avatar answered Oct 13 '22 12:10

Triphon Penakov