←back to thread

257 points pmig | 1 comments | | HN request time: 0.207s | source
Show context
pshirshov ◴[] No.43100215[source]
1) There is a perfectly working AOT compiler for JVM, namely Graal Native. Sub-second startup times are easily achieavble. 2) Dependency Injection does not require run-time reflection, I made one reflectionless DI for Scala and one for C# 3) Spring is not the best DI in the Java ecosystem
replies(1): >>43101488 #
1. watt ◴[] No.43101488[source]
Dagger will give you DI at compile time (build time), via annotation processor feature. (And it seems Quarkus can do it as well?)