Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
698 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 Reply

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" />

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...