TL;DR CGLIBからの題のような警告を抑制する場合、調べた限り以下のような方法があった。 interface化 --add-opens java.base/java.lang=ALL-UNNAMED指定 open化 これら全てに不適切感が有る場合、Kotlinならspringプラグイン経由でall-open対象にする対処法がある。 状況 SpringBootのアップデート後からPublic final method [...] cannot get proxied via CGLIB, consider removing the final marker or using interfa…