getRealPath(“/”) - 此方法的结果在Tomcat和WebSphere中有何不同

时间:2013-04-05 10:35:43

标签: websphere

使用方法

getServletContext().getRealPath("/") 

在Tomcat中的路径末尾返回“\”(例如C:\ testfolder \ myapp),而在Websphere中却没有(例如C:\ testfolder \ myapp) 。 这是什么原因? (“/”)在getRealPath(“/”)中的相关性是什么?

1 个答案:

答案 0 :(得分:0)

Q-1: What is the relevance of ("/") in getRealPath("/")

/指的是您的根Web上下文路径。该函数返回安装war / web应用程序的web目录的物理路径。

Q-2 Why tomcat appends \ in the end and websphere does not.

不同的服务器在结果方面确实有所不同,因为当Java EE模糊地定义任何部分时,API实现因服务器而异。

此致 拉维