That's purely your choice on the libraries you use. Nothing in the language is forcing you to do this. Getter/setters are just a requirement of JPA which you don't have to use. In fact if you just use jOOQ or query dsl you can map to Java records.
The language isn't forcing it, but idiomatic Java (and decades of Java-based university training) is. Pretty much every professional Java project I've ever seen is full of code like:
Kotlin's approach, where you declare and instantiate a property, and the getter/setter/backing storage are synthesized for you, is vastly preferable to me:
I just disagree. This is not idiomatic Java; it's idiomatic JPA. All of the Java I see professionally and in the community uses immutable classes when not dealing with JPA entities.
I guess you live in a more modern workspace than I do. I just picked an open source project that (A) I know we use at work, and (B) I know is written in Java. I picked a random source file that sounded like it would have some mutable state, and the very first functions below the constructor were a trivial getter and setter around a private ivar.
I'm a little surprised it was in literally the first place I looked, but I'm not surprised that it was easy to find. "Use private ivars and write getters and setters to encapsulate your state" was probably the second thing that a generation of CompSci students learned in their first programming class, right after "an object is an instance of a class."
You picked a project that (A) is literally older than the sun, (B) targets Java 11, a version from 5 years ago, and (C) the file is generated.
Right at the top of the file...
> /* QueryParser.java /
/ Generated By:JavaCC: Do not edit this line. QueryParser.java */
I'm not claiming you're not going to see properties written out. I'm just saying that's not the majority of code you're going to see and to claim that idiomatic Java is all getters and setters is a bit far fetched.
Here is what I would consider modern idiomatic Java, immutable records and immutable classes that may expose some of their state:
Kotlin’s approach was a necessity to interact with a Java convention. Java instead tries to move away from that mutable convention to an immutable-preferring one with clearer rules (e.g. what is the correct setter and getter for an `IP` field?).
I prefer Kotlin over Java as well.
I use it at work (where Java code has a tendency to become Kotlin code if it comes close to me) and at home. I'm looking forward to seeing how the native and wasm backends might extends the reach of Kotlin in the future.
Because Kotlin as a mess language and have poor IDE support.
$ kotlin
Welcome to Kotlin version 1.6.10 (JRE 21.0.1+12-Debian-2)
Type :help for help, :quit for quit
>>> val b=ByteArray(1);
>>> b[0] == 0;
error: operator '==' cannot be applied to 'Byte' and 'Int'
b[0] == 0;
^
$ jshell
| Welcome to JShell -- Version 21.0.1
| For an introduction type: /help intro
jshell> byte[] ba={0}
ba ==> byte[1] { 0 }
jshell> ba[0]==0
$2 ==> true
Can you share plugin for NetBeans? Last time I checked it was some outdated plugin from JetBrains (who, obviously, aren't interested in any other IDE).
It's definitely not limited to the server side of things. Obviously it's the standard for Android app development and, largely, a pleasure to work with.