intellij-quarkus icon indicating copy to clipboard operation
intellij-quarkus copied to clipboard

JAX-RS endpoint codelenses disappear when Reactive routes are added to the classpath

Open fbricon opened this issue 2 years ago • 0 comments

Create a new Quarkus project with

    <dependency>
      <groupId>io.quarkus</groupId>
      <artifactId>quarkus-resteasy-reactive-qute</artifactId>
    </dependency>

Open org.acme.SomePage, you'll see a codelens over the get method:

Screenshot 2023-09-12 at 09 13 52

Now if you add

<dependency>
    <groupId>io.quarkus</groupId>
    <artifactId>quarkus-reactive-routes</artifactId>
</dependency>

the code lens disappear after the Maven project has been synchronized.

fbricon avatar Sep 12 '23 07:09 fbricon