Open dmakariev opened 5 months ago
That's a current limitation, unfortunately, as, right now, the bean decoration requires a full ApplicationModules
instance present. That in turn requires us to run ArchUnit which needs to read the class files, which is problematic on GraalVM.
We can probably investigate creating a list of bean types to be decorated with the observability interceptors during the AOT phase and rather use that at runtime.
I've created a simple application using
I had to manually change
to
after executing
I got the following
then I've tried mitigating the issue as far as I could by adding
and in pom.xml
now the stacktrace is
As convenience I'm attaching the modified project as zip demo-modified.zip
Thanks in advance !