I'm currently developing a Spring Boot App with MariaDB as a Database. My localhost is a Windows 10 installation and the production server is a AWS Linux (first gen) image.
On localhost I have a local MariaDB installation. On production I have a AWS RDS instance running MariaDB, default parameters.
Currently the problem I facing is the following, I'm trying to save the following characters ["↑", "↓", "→", "←"] to DB. On localhost characters are save as excepted. On the production server characters are saved as "?". Both DB's have the same mysqldump file.
I already debugged both Spring instances and they both receive parameters as intended.
Any ideas?
Extra 1:
The only big difference between both instance is that localhost runs with the ./mvnw command while the production site is a generated jar running inside a Docker container.