Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Quarkus: Creating a Gateway microservice

Tags:

quarkus

Does anyone know a Quarkus compatible library to create a gateway microservice (such as Netflix/zuul or Spring Cloud Gateway).

Thanks.

like image 365
Yann Avatar asked Nov 06 '22 09:11

Yann


1 Answers

I don't know what functionalities you all need for a gateway, but if you need a simple mapping/routing functionality, then you can also do this with Camel which has Quarkus support.

See an example here: https://dzone.com/articles/microservices-with-apache-camel

like image 132
Serkan Avatar answered Dec 18 '22 20:12

Serkan