pompiuses

Results 10 comments of pompiuses

@tipsy We are using Javalin together with the [Jetty ProxyServlet](https://www.eclipse.org/jetty/documentation/jetty-9/index.html#proxy-servlet). Will virtual threads also work with servlets added manually?

I've got a very similar issue [reported here](https://github.com/oracle/graal/issues/7182). In my case I get the same NullPointerException when calling `java.lang.Runtime.maxMemory` (Oracle GraalVM JDK) or `java.lang.Runtime.availableProcessors` (GraalVM CE JDK) in a container...

I still get the same exception with the `-H:-UseContainerSupport` parameter. Am I using it wrong? I can't find it in the GraalVM documentation. ```native-image -jar target/myapp-1.0-SNAPSHOT-jar-with-dependencies.jar -H:-UseContainerSupport -H:ConfigurationFileDirectories=graalvm/tracing-agent -o target/app...

Oracle just announced a new Oracle GraalVM distribution. It's released under the GraalVM Free Terms and Conditions (GFTC) license. This means that you can use all features previous available only...

Not sure, that would have to be looked into. The first thing that comes to mind is that it's maybe possible to refactor ReflectiveVirtualThreadBuilder so that the "unstarted" method gets...

One possible solution could be to create a single instance of a virtual thread factory (`Thread.ofVirtual().factory()`) to create new threads with instead of `Thread.Builder.OfVirtual` in `ReflectiveVirtualThreadBuilder`. Then you won't have...

I got around this issue when upgrading to Javalin 6. I can now set the Jetty thread pool directly myself. ``` Javalin javalin = Javalin.create(config -> { // Using a...

I assume this issue can be closed. Maybe the Javalin documentation can be updated with the code above in case someone else tries to use Javalin with GraalVM?

This feature is very welcomed! We're currently using the tracing agent together with our test suite to automatically pick up all use of reflection (which is somewhat error prone if...