You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
The client utilizes Gson for JSON serialization/deserialization and Gson uses reflection of internaljava.lang classesto do it. This is not allowed by default in Java 9 and above.
To work around this, it's necessary to add this JVM commandline argument:
--add-opens=java.base/java.lang=ALL-UNNAMED
If you're using Gradle, you can add this instead to yourapplication block in yourbuild.gradle.kts file: