Mallesh
Mallesh

Reputation: 143

How to take advantage of Quarkus in existing spring boot applications

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.

Upvotes: 6

Views: 3612

Answers (2)

Triphon Penakov
Triphon Penakov

Reputation: 494

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

Upvotes: 2

geoand
geoand

Reputation: 64011

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.

Upvotes: 11

Related Questions