问题情形
有时候部署在 Azure App Service的 Java应用会出现乱码
详细日志
无
问题原因
因为 App Service默认的编码为gbk,所以在显示页面或传递中文字符时就会出现乱码。
解决方案
部署在App Service的Java应用,都会在site/wwwroot 文件夹下创建 web.config 文件。需要在environmentVariable中添加-Dfile.encoding=UTF-8。
<configuration>
<system.webServer>
<handlers>
<add name="httpPlatformHandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="%AZURE_TOMCAT85_HOME%\bin\startup.bat" arguments="">
<environmentVariables>
<environmentVariable name="JAVA_OPTS" value="-Djava.net.preferIPv4Stack=true -Dfile.encoding=UTF-8" />
</environmentVariables>
</httpPlatform>
</system.webServer>
</configuration>
参考资料