我使用PlayFramework 2.3构建了一个应用程序,在某些时候我上传了一个CSV文件并用它填充了一个数据库。
在本地(127.0.0.1:9000)访问应用程序并进行上传时,一切正常,文件上传,解析并添加到数据库中没有任何问题。
在制作过程中完成了相同的操作,但所有重音字符都替换为��
。
开发者和生产者之间的主要区别是:
这是详细信息:
db.default.url="jdbc:mysql://127.0.0.1/2leadin?characterEncoding=UTF-8"
最后,这是我的NGinx配置:
proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Scheme "https";
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_http_version 1.1;
server {
listen 80;
server_name my.2lead.in;
return 301 https://my.2lead.in;
}
server {
listen 443;
ssl on;
root /var/www/2lead.in/errors/;
# http://www.selfsignedcertificate.com/ is useful for development testing
ssl_certificate /ssl/2lead.crt;
ssl_certificate_key /ssl/2lead.key;
# From https://bettercrypto.org/static/applied-crypto-hardening.pdf
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # not possible to do exclusive
ssl_ciphers 'EDH+CAMELLIA:EDH+aRSA:EECDH+aRSA+AESGCM:EECDH+aRSA+SHA384:EECDH+aRSA+SHA256:EECDH:+CAMELLIA256:+AES256:+CAMELLIA128:+AES128:+SSLv3:!aNULL:!eNULL:!LOW:!3DES:!MD5:!EXP:!PSK:!DSS:!RC4:!SEED:!ECDSA:CAMELLIA256-SHA:AES256-SHA:CAMELLIA128-SHA:AES128-SHA';
add_header Strict-Transport-Security max-age=15768000; # six months
# use this only if all subdomains support HTTPS!
# add_header Strict-Transport-Security "max-age=15768000; includeSubDomains"
keepalive_timeout 70;
server_name my.2lead.in;
# remove the robots line if you want to use wordpress' virtual robots.txt
location = /robots.txt { access_log off; log_not_found off; }
location = /favicon.ico { access_log off; log_not_found off; }
location /public {
alias /var/www/2lead.in/my/public/;
access_log off;
log_not_found off;
}
location / {
proxy_pass http://127.0.0.1:9100;
}
location ~ /\.git {
deny all;
}
error_page 502 @maintenance;
location @maintenance {
rewrite ^(.*)$ /error502.html break;
}
}
我缺少什么,你有什么想法我为什么只在PROD中有编码问题?我很确定这是因为NGinx,但我找不到原因。
谢谢。
答案 0 :(得分:1)
默认Java字符集取决于语言环境,取自file.encoding
环境变量(请参阅this answer)。这可能会导致不同机器上的行为差异,就像您所看到的那样。两种修复方法,方便的方式和更健壮,更便携的方式:
-Dfile.encoding=UTF-8
(或与您的开发环境匹配的任何内容)总之,依赖于默认系统编码是脆弱的,在大多数情况下应该避免使用。