Akka and Graal’s native image tool

I’ve managed to get Akka HTTP working with native-image. See my example project: https://github.com/vmencik/akka-graal-native

To get the scheduler working I used the Graal/SubstrateVM substitution mechanism to recalculate the field offset used with sun.misc.Unsafe. Otherwise it was mostly about configuring the reflection.

3 Likes

Thanks for sharing.