forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request quarkusio#41721 from michalvavrik/feature/fix-quar…
…kus-rest-concurrent-modif-ex Fix Quarkus REST concurrent modification exception when making abstract resource classes inheritors beans
- Loading branch information
Showing
4 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...y/reactive/server/test/resource/basic/resource/InheritanceAbstractParentImplResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package io.quarkus.resteasy.reactive.server.test.resource.basic.resource; | ||
|
||
public class InheritanceAbstractParentImplResource extends InheritanceAbstractParentResource { | ||
|
||
@Override | ||
public String get() { | ||
return "works"; | ||
} | ||
|
||
} |
12 changes: 12 additions & 0 deletions
12
...teasy/reactive/server/test/resource/basic/resource/InheritanceAbstractParentResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.quarkus.resteasy.reactive.server.test.resource.basic.resource; | ||
|
||
import jakarta.ws.rs.GET; | ||
import jakarta.ws.rs.Path; | ||
|
||
@Path("/inheritance-abstract-parent-test") | ||
public abstract class InheritanceAbstractParentResource { | ||
|
||
@GET | ||
public abstract String get(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters