由于最近使用request.getRealPath发现该方法已经不推荐使用了,查了一下后,发现替代方法为request.getSession().getServletContext().getRealPath(File.separator)
如request.getSession().getServletContext().getRealPath(File.separator) 得到项目的绝对路径如:
D:work omcatapache-tomcat-7.0.47wtpwebappsITPM
request.getSession().getServletContext().getRealPath(“/ueditor/”) 得到项目的绝对路径
D:work omcatapache-tomcat-7.0.47wtpwebappsITPMueditor
断点调试图: