▲ | KronisLV 7 days ago | ||||||||||||||||||||||||||||||||||||||||||||||
> I still can open my decade-old Java projects, run build with modern Maven/JDK and get working code - in a few minutes. Try any old Spring project, where anything newer than JDK 8 will be incompatible. The only saving grace is that JDK 8 is still available, but even it will eventually reach EOL. And then you look at JDK 11 projects and realize that they won't run on anything newer due to Lombok issues, so that's another thing to update and fix. I think the experience of code rot is universal and increases with the amount of dependencies you have. | |||||||||||||||||||||||||||||||||||||||||||||||
▲ | mperham 7 days ago | parent | next [-] | ||||||||||||||||||||||||||||||||||||||||||||||
> I think the experience of code rot is universal and increases with the amount of dependencies you have. This is true but there's also a factor from the language/framework in use. Node is especially bad because of it generates huge package dependency trees. Go is especially good because of the large stdlib (which I use to minimize deps in https://github.com/contribsys/faktory) and excellent backwards compatibility. | |||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||
▲ | nitwit005 6 days ago | parent | prev | next [-] | ||||||||||||||||||||||||||||||||||||||||||||||
Spring generates bytecode, and Lombok is a language extension. You're effectively writing code in another language that's very similar to Java. The company I work at has a ton of projects stuck on ancient spring versions and Java 8 (or Java 6 in one instance). They still insist on Spring despite being essentially unable to upgrade to a version newer than a decade old. | |||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||
▲ | signal11 4 days ago | parent | prev [-] | ||||||||||||||||||||||||||||||||||||||||||||||
Old Spring versions < 6.1 are obsolete, so you do have to upgrade Spring in many scenarios as well. No security fixes for them unless you pay for support. |