request.getRealPath()方法不推荐使用

ServletActionContext.getRequest().getRealPath("");getRealPath上面有删除线是因为已经不推荐这样使用了

The method getRealPath(String) from the type ServletRequest is deprecated

可以使用 ServletActionContext.getRequest().getSession().getServletContext().getRealPath(); 来替换。


你可能感兴趣的:(实训笔记)