使用 Eclipse 的 WTP Tomcat 服务器调试 servlet 时在 web.xml 中指定相对路径?
我试图在 web.xml 文件中指定一个相对目录。我基本上希望它读取“web-inf”下的“data”文件夹,但我尝试过的似乎都不起作用。
“/data”翻译为根目录中的数据文件夹(我使用的是Windows)。
“data”翻译为“C:\Program Files\Eclipes\data”
“${CATALINA_HOME}/[etc...]”似乎也不起作用。
有什么想法吗?
I'm trying to specify a relative directory in the web.xml file. I basically want it to read the "data" folder underneath "web-inf", but nothing I've tried seems to work.
"/data" translates to the data folder in the root directory (I'm using windows).
"data" translates to "C:\Program Files\Eclipes\data"
"${CATALINA_HOME}/[etc...]" doesn't seem to work either.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您可以使用它从相对路径获取绝对路径:
I think you can use this to obtain an absolute path from your relative path:
弄清楚了...
WTP 使用变量“${catalina.home}”,而不是“${CATALINA_HOME}”...
Figured it out...
WTP uses the variable "${catalina.home}", not "${CATALINA_HOME}"...