Home > Net >  Is that possible to build a Quarkus native executable with a normal JavaEE and JAX-RS Project?
Is that possible to build a Quarkus native executable with a normal JavaEE and JAX-RS Project?

Time:12-18

Let's say I've a project, which is about JavaEE and JAX-RS and normally deployed on wildfly. And now I need to implement Quarkus native.

So here is what I have:

A JavaEE project, which so far has no relation with Quarkus.

What I want to do:

1.Implement Quarkus native with a POM.

Is that possible ? Any Suggestions or Answers would be appealed.

CodePudding user response:

Most JavaEE applications can be converted to Quarkus fairly easily as Quarkus has support for the most important JavaEE specs.

There are also various articles you can read up on. See this, this and this. You can also check out the Migration Toolkit for Applications which provides insights on migrating existing applications to Quarkus.

  • Related