Java Web 应用程序的 Oracle 驱动程序

发布于 2024-12-19 07:33:23 字数 232 浏览 0 评论 0原文

是否可以将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凑诗 2024-12-26 07:33:23

要回答最初的问题(有关 .jar 文件的放置),需要考虑一些事项:

  • 同一服务器上是否有其他应用程序使用该文件?如果是,并且您想确保所有应用程序都使用相同的版本,则放置在 server/lib 文件夹中会更好
  • 如果您希望在每个应用程序使用的 .jar 版本方面有一定的灵活性,那么 webapp/lib 是更好
  • 如果您将应用程序打包为ear或war,并且有大小考虑,那么考虑到上述两点,server/lib选项有一些优势。
  • 如果您遇到依赖项的类加载器问题,则在决定放置位置时可能必须考虑其他 jar。

无论您决定如何,最好确保每个 jar 在每个应用程序类路径中仅存在一次。

To answer the initial question, about placement of the .jar file, there are some things to consider:

  • Are there other apps on the same server that use this? If yes, and you want to ensure all of them use the same version, the placing on the server/lib folder would be better
  • If you want some flexibility in terms of what version of the .jar each app uses, then webapp/lib is better
  • If you are packaging your app as an ear or war, and there are size considerations, then the server/lib option has some advantages, given it makes sense considering the two points above.
  • If you run into classloader issues from dependencies, you may have to consider other jars when deciding on placement.

Whatever you decide, its best to make sure each jar exists only once in each apps classpath.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文