I have an application using spring boot + oracle (via tomcat datasource). Using spring-data, a simple query in a table returns characters with an encoding problem.
This same application, in a very specific situation, I create a direct (no datasource) connection with JDBC and execute a query on the same table. But in this case, there is no problem with encoding.
Note: Before I thought it was just a problem with the front-end (some JS component), but checking the HTTP response by the browser, the data is already in trouble in the first case, but not in the second. p>
Sorry if this is a duplicate issue, but I could not find something similar. I know there are a lot of questions with oracle + java + charset, but my problem differs from the others I've encountered.