I have the simplest possible JSF2 form inserting a table field in a MySQL db.
My facelet has <?xml version="1.0" encoding="UTF-8"?>
at the top.
My input is a thing like <h:inputText value="#{testController.entity.test}" id="test" />
So I try to insert "provà" in my Jpa2/Hibernate entity. Then I persist it and, when I look for the saved value in my MySQL db....
I find "provÃ". It's the same old encoding problem I always solve by trying and trying....
Can you suggest me what to check first for fixing it?
I mean, I know there's a lack of info in this question, I just wanna see what do you ask me: in your questions I will find the answer! :)