ecplise中设置字符编码
Posted ww11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ecplise中设置字符编码相关的知识,希望对你有一定的参考价值。
ecplise 设置
1 ecplise编码格式
右键 在general-workspace- text file encoding 选择utf-8
2 jsp文件编码格式 web-jspfile-encoding
tomcat设置
1 URl地址中传递值的编码格式 services-service- 添加xml-URLEncoding="gbk"到Connector标签中
<Connector URLEncoding="gbk" connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
2 方便代码编写编译 services-service-设置reloadable="false"
<Context docBase="myWeb" path="/myWeb" reloadable="false" source="org.eclipse.jst.jee.server:myWeb"/></Host>
以上是关于ecplise中设置字符编码的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Spring Boot 中设置 UTF-8 字符编码?