Java Web 应用程序的 Oracle 驱动程序
是否可以将 oracle 驱动程序 jar 放在 Web 应用程序的 /lib 目录中,或者将其放在 tomcat 的 lib 目录中更好?
我想知道这个问题,因为在我的本地主机上,我的 Web 应用程序与 Web 应用程序的 /lib 目录中的 jar 一起运行良好,但是当我将 Web 应用程序移动到真正的开发服务器时,我在尝试时继续收到空指针异常关闭连接池对象。我认为这个问题可能是我无法释放连接的原因。
谢谢。
Is it okay to place an oracle driver jar within the web application's /lib directory, or is it better practice to place it in tomcat's lib directory?
I'm wondering about this because on my local host, my web app runs fine with the jar in the web app's /lib directory, but when I move the web app to a real development server, I continue to receive null pointer exceptions when trying to close a connection pool object. I thought this issue may be why I'm unable to free the connection.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要回答最初的问题(有关 .jar 文件的放置),需要考虑一些事项:
无论您决定如何,最好确保每个 jar 在每个应用程序类路径中仅存在一次。
To answer the initial question, about placement of the .jar file, there are some things to consider:
Whatever you decide, its best to make sure each jar exists only once in each apps classpath.