springboot请求静态文件报错

ERROR o.springframework.boot.web.support.ErrorPageFilter - Cannot forward to error page for request [/static/导入模板文件.xlsx] as the response has already been committed. As a result, the response may have the wrong status code. If your application is running on WebSphere Application Server you may be able to resolve this problem by setting com.ibm.ws.webcontainer.invokeFlushAfterService to false

碰到一个蜜汁问题,请求一个静态文件报错。

项目是springboot,打成war包放在WebSphere跑的,同一个目录下还有好多个文件,都是能请求到的,而且也有中文命名的文件,所以第一时间没想是中文命名的问题。

之后在本地直接IDEA启动的话,是能请求到的,但是放到服务器就不行,很蛋疼。

然后把文件名改成了英文,就能请求到了。。。。。

明明其他的中文命名的文件都能访问到,就这一个不能,虽然解决了,但是不知道为啥。。。。

你可能感兴趣的:(springboot请求静态文件报错)