this post was submitted on 26 Apr 2025
112 points (96.7% liked)

Programmer Humor

35296 readers
155 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 10 hours ago* (last edited 10 hours ago)

Sure, I didn't claim that the bad ecosystem makes the language as such bad (although it is still bad, for other reasons). It's just an additional disadvantage of developing software on the Java platform.

That said, I do think some of the bad code out there is an effect of trying to work around flaws or missing features in the language. Libraries like Spring add an additional configuration layer that is practically like an additional language on top of the base language. Instead of coding Java, you're coding Bean configurations and filter chains. Unfortunately all of that comes without useful debugging tools, so you're left scratching your head why the system isn't doing what you want. Log4J is another such complex configuration system that - unfortunately - customers are encouraged to change themselves which leads to confusing failure modes and insufficient user interfaces.