Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例えば:
http://ローカルホスト:8080/myyouxi/upload/example.jpg
写真をダウンロードすると、次のように変わります。
http://ローカルホスト:8080/myyouxi/upload/%E6%9A%97%E5%A4%9C%E9%AA%91%E5%A3%AB.jpg
次に、HTTP ステータス404に移動します-/myyouxi/upload/%E6%9A%97%E5%A4%9C%E9%AA%91%E5%A3%AB.jpg
/myyouxi/upload/%E6%9A%97%E5%A4%9C%E9%AA%91%E5%A3%AB.jpg
これは、コネクタが UTF-8 を使用して URI をエンコードするように構成されていないためだと思います。<Connector>のエントリ$CATALINA_HOME/conf/server.xmlのURIEncoding属性が に設定されていることを確認しますUTF-8。例:
<Connector>
$CATALINA_HOME/conf/server.xml
URIEncoding
UTF-8
<Connector protocol="HTTP/1.1" port="8080" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8" />