2分钟搭建企业轻量级负载均衡服务器
文章目录
- 1. 修改配置文件
- 2. tomcat启动参数:
- 3. 统一编码格式
1. 修改配置文件
- 打开IntelliJ IDEA本地安装目录中bin文件夹下的idea.exe.vmoptions和idea64.exe.vmoptions这两个文件
分别在这两个文件内容的末尾添加:
-Dfile.encoding=UTF-8
2. tomcat启动参数:
- 选择项目部署的tomcat,在配置项VM options文本框中输入-Dfile.encoding=UTF-8,点击Apply或OK即可。
-Dfile.encoding=UTF-8
3. 统一编码格式
- 打开IntelliJ IDEA>File>Setting>Editor>File Encodings,将Global Encoding、Project Encoding、Default encodeing for properties files这三项都设置成UTF-8,点击OK或者Apply。