JBang and annotation processors? #1529
-
So this is more a "try to understand the technology" rather than "Should jbang support this" kind of query So i know there is quarkus support but as i understand it, this is maintaned by the quarkus team and is not a thing JBang handles? I started working with Micronaut a while back, and thought i would give it a go with JBang; the dependencies sync as they should but when i run it, it starts, but the annotated functionallity does not kick in. The kicker is that if i run it in Eclipse (with the jbang plugin installed) they kick in just fine, and my restcontroller answers as it should when i call the URI. But running it vanilla from the commandline i just get a 404 which suggest the routing does not get hooked up and i would assume this is because lack of annotation processing So any suggestion how i can get this to work with vanila jbang outside my IDE? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
jbang just let javac pick up annotation processors from dependencies. so it should just work unless micronaut has different kind of annotation processors that requires manual registration? |
Beta Was this translation helpful? Give feedback.
jbang just let javac pick up annotation processors from dependencies.
so it should just work unless micronaut has different kind of annotation processors that requires manual registration?