首先使用哪个context.xml
在我的 Tomcat 6.0.x
上,我的 conf
目录中有一个 context.xml
文件,并且我还有一个 context.xml< /code> 位于从
netbeans6.9.1
部署的项目的 META-INF
目录中。
context.xml
包含要连接的数据库的详细信息...
应用程序将使用两者中的哪一个来连接到
tomcat/conf
project/META-INF
中的 Context.xml
On my Tomcat 6.0.x
I have a context.xml
file in the conf
directory and I also have a context.xml
in the META-INF
directory of a project deployed from netbeans6.9.1
.
The context.xml
contains the details of database to be connected...
Which among the two will be used by the application to connect to the database
- Context.xml in
tomcat/conf
- Context.xml in
project/META-INF
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的理解是,tomcat/conf/context.xml 定义了一组“全局”、静态配置的上下文。任何使用其自己的
context.xml
部署的 WAR 都将使用该上下文进行配置,而不是使用全局上下文中定义的任何上下文。My understanding is that
tomcat/conf/context.xml
defines a set of "global", statically-configured contexts. Any WAR deployed with its owncontext.xml
will be configured using that, rather than any of the contexts defined in the global one.