Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
666 views
in Technique[技术] by (71.8m points)

grails - Umlaute get wrong when doing an update of a row

I am running a grails V2.3.5 application which i brought to a new server and a new database server.

Migrated data is displayed correctly.

But when I update a row my German Umlaute get strange characters.

When I change the data with a mysql client it is displayed correctly again.

Any Idea what that could be and where i could look at?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I found the problem it was not related to grails. I missed a tomcat configuration in

server.xml

 URIEncoding="UTF-8"

in

<Connector port="8080" protocol="HTTP/1.1"
        URIEncoding="UTF-8"
        connectionTimeout="20000"
           redirectPort="8443" />

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...