将目录添加到我的servlet web-app web.xml

时间:2016-09-27 07:52:45

标签: java xml servlets web.xml

基本上我有servlet web-app,我的web-app项目中有一个目录D:\resources,在我的项目web.xml中我需要指定我的web-app需要的资源可以在D:\resources找到,如果您告诉我如何为项目web.xml文件指定目录,我将不胜感激。

提前致谢

1 个答案:

答案 0 :(得分:0)

实现这一目标的最佳方法是通过在应用程序服务器中定义JNDI来配置外部资源,然后在web.xml中引用相同的内容,例如

<resource-description>
   <res-ref-name>myAppResources</res-ref-name>
   <jndi-name>myResource</jndi-name>
</resource-description>