|
|
|
|
|
by tkubacki
678 days ago
|
|
I went from C# to JVM/gradle and have the opposite experience. 1) default C# IDE is junk compared to IntelliJ
2) Gradle give you insane level of control over project you can even build dynamic template tasks shown in IntelliJ UI using Kotlin/Groovy
3) JVM ecosystem is much bigger and default framework SpringBoot is ready to use with houndreds of integrations which are either non existent or hards to use in .NET as opposed to SpringBoot where you have batteries included approach e.g. want outbox pattern? Simply use modulith, convention over configuration will give you some nice defaults…
4) There are plenty of widely used langs compared to .NET if you don’t like modern Java (which is on the same level as C# IMHO) you have: Kotlin which is a better lang than C#, Scala, Groovy from the mainstream ones and Clojure and probably many more lesser known.
5) There is nothing as expressive as Groovy Spock for testing in .Net world. There are issues I see but can be easy mitigated e.g.
I don’t like default Java heavy ORM (especially mapping complicated two way relations) but it’s very easy to not use them and simply relay on mapping foreign key. To sum it up I bet your issues are mostly you don’t know ecosystem well enough. |
|