I reached a solution by rearranging the tags filter and filter-mapping in the web.xml file as shown below:
<filter>
<filter-name>Spring OpenEntityManagerInViewFilter</filter-name>
...
Type: Posts; User: djorco; Keyword(s):
I reached a solution by rearranging the tags filter and filter-mapping in the web.xml file as shown below:
<filter>
<filter-name>Spring OpenEntityManagerInViewFilter</filter-name>
...
It's OK
this is the character enconding filter section in the web.xml
<filter>
<filter-name>CharacterEncodingFilter</filter-name>
...
Clandestino: in my mysql the encoding is working perfect. My problem is from the POST to the method in the controller class for example:
In the page I write "ééé" in a input box, and do a post
In...
Hello Astronaute,
I'm working with a simple jspx, spring, hibernate project and have the same issue. I use characters like á, é, í, ó, ú, ñ.
My issues are in:
* Inputs fields in post actions...