We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcb20c0 commit 693c790Copy full SHA for 693c790
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Changed
11
+
12
+- setup on virtual threads (RunOnVirtualThread)
13
14
## [1.1.0] - 2024-12-28
15
16
### Added
src/main/java/org/fugerit/java/demo/graalkus/DocResource.java
@@ -1,5 +1,6 @@
1
package org.fugerit.java.demo.graalkus;
2
3
+import io.smallrye.common.annotation.RunOnVirtualThread;
4
import jakarta.enterprise.context.ApplicationScoped;
5
import jakarta.inject.Inject;
6
import jakarta.ws.rs.GET;
@@ -22,6 +23,7 @@
22
23
@Slf4j
24
@Path("/doc")
25
@ApplicationScoped
26
+@RunOnVirtualThread
27
public class DocResource {
28
29
@Inject
0 commit comments