Kilo
Kilo copied to clipboard
Lightweight REST for Java
Where applicable, `instanceof` pattern matching should be used: https://openjdk.java.net/jeps/394 This is a non-functional change but is dependent on a baseline of Java 17 (LTS) or later.
Where applicable, switch expressions should be used: https://openjdk.java.net/jeps/361 This is a non-functional change but is dependent on a baseline of Java 17 (LTS) or later.
Java 15 introduced records as a preview feature: https://docs.oracle.com/en/java/javase/15/docs/api/java.base/java/lang/Record.html `BeanAdapter` should be updated to support reading from record types (e.g. via a static inner `RecordAdapter` class that implements `Map`) as...