getRealPath
java.lang.String getRealPath(java.lang.String path)
Gets the real path corresponding to the given virtual path.
For example, if path is equal to /index.html, this method will return the absolute file path on the server's filesystem to which a request of the form http://<host>:<port&... would be mapped, where <contextPath> corresponds to the context path of this ServletContext.
上面是API的解释,我疑惑的是这个virtual path。
一般的用法是serveletContext.getRealPath(“/”),“/”可以理解为,应用的根目录,那么“” 呢?
希望有大神能,详细的解释这个virtual path的概念。
=====回答你這個問題突然遇到segmentfault網站掛了答案又重新寫一遍====
是一個介面。具體實作由servlet容器來實現,例如tomcat。在這個介面中定義了一個方法叫getRealPath,對應的實作也是有各個servlet容器來實現的。我沒有查看tomcat的源碼,只看了spring的mock實作。
在這個實作中可以看到傳入「」和傳入「/」效果是一樣,程式碼都有了就不用在多解釋了吧。其他容器的實作估計也差不多。