原因:中文目录在服务器启动时会服务器会默认使用ISO-8859-1加载方式,会使使用utf-8方式开发的项目中加载不出来此文件图片。
方式一.
使用tomcat服务启动项目,更改根目录下confservice.xml
<Connector connectionTimeout="20000" port="8288" protocol="HTTP/1.1" redirectPort="8443"/>
增加 URIEncoding="UTF-8"
<Connector URIEncoding="UTF-8" connectionTimeout="20000" port="8288" protocol="HTTP/1.1" redirectPort="8443"/>
方式二
使用eclipse开发项目,将eclipse资源目录下Service文件下的tomcat中service.xml文件按照上述方式更改。
CosmosRay |
||
cosmosray@aliyun.com |