avaje-inject
avaje-inject copied to clipboard
Dependency injection via APT (source code generation) ala "Server-Side Dagger DI"
Apparently calling the ServiceLoader multiple times slows things a little bit. I'm thinking we can define a super interface for all four of our spi classes, load them all once,...
The generator already prevents code from generating with the old interfaces, this seals the deal.
Hi, are there configuration options for inject, e.g. to apply lazy globally? Spring had an option to globally mark everything as lazy. Trying to port an application to use this,...
If I declare an `@Inject` without a matching `@Singleton` or similar, I get the following error: `Caused by: java.lang.NullPointerException: Cannot invoke "String.lastIndexOf(int)" because "fullType" is null` It was pretty hard...