In my application, both the UI and the database itself are configured to UTF-8.
However, when data with special characters (such as Hebrew letters) is inserted through a JdbcTemplate method into my database, the data appears as "?" instead of the characters themselves.
I assume the issue is with the character set encoding of Jdbc itself, but I cannot find where to configure such encodings.
Thanks