request.getRealPath("") 这个方法已经不推荐使用了,那代替它的是什么方法呢?
下面就是替代它的方法:
request.getSession().getServletContext().getRealPath() 得到站点的绝对地址
在servlet或者struts中还可以这样:
this.getServletContext().getRealPath("/");
this.getServlet().getServletContext().getRealPath("/");
DispatcherServlet讲解
https://www.cnblogs.com/linjiqin/articles/3440990.html
SpringMVC工作原理之一:DispatcherServlet
https://www.cnblogs.com/tengyunhao/articles/7518481.html
文件上传 multipart
https://www.jianshu.com/p/5e090e494308
浅析MultipartResolver
https://blog.csdn.net/qq_27605171/article/details/80267476
SpringMVC工作原理之四:MultipartResolver
https://blog.csdn.net/qq_36850813/article/details/80993462
Spring 中 MultipartResolver
https://blog.csdn.net/zhonglin_li/article/details/51326245
文件上传的三种方式-Java
https://blog.csdn.net/a906998248/article/details/46364941