postgreSQL JDBC 驱动程序的 .jar 文件。如何配置?

发布于 2024-10-31 07:41:15 字数 148 浏览 0 评论 0原文

我正在尝试在 Windows 的 netbeans 中为 JDBC 驱动程序创建连接。问题是我无法使用 http://jdbc.postgresql.org/download.html 提供的 .jar 文件创建域名源名称

有人可以帮忙吗?

I am trying to create a connection for the JDBC driver in netbeans for windows. THe problem is that i cannot make a domain source name with the .jar file provided from http://jdbc.postgresql.org/download.html

Can anyone help?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

漫漫岁月 2024-11-07 07:41:15

的第 2 节和第 3 节清楚地记录了配置 PostgreSQL JDBC 驱动程序所需执行的操作PostgreSQL JDBC 接口

这包括:

  • 将驱动程序 JAR 添加到项目中、
  • 修改源代码以使用驱动程序以及
  • 创建“jdbc:”连接 URL,告诉 Java 客户端代码要连接到哪个数据库。

如果您有本手册未涵盖的具体问题,请更新您的问题。

What you need to do to configure the PostgreSQL JDBC drivers is clearly documented in sections 2 and 3 of The PostgreSQL JDBC Interface.

This covers:

  • adding the driver JARs to your project,
  • modifying your source code to use the driver, and
  • creating the "jdbc:" connection URL that tells your Java client code what database to connect to.

If you have a specific question that is not covered by the manual, please update your Question.

全部不再 2024-11-07 07:41:15

如果您正在制作 Web 项目,那么这里是一个项目结构:

TOMCAT_HOME
    -webapps
        -YourProject
             -WEB_INF
                 -lib

现在在 lib 文件夹中,您可以拥有该项目使用的所有 jar 文件。

通过在 TOMCAT_HOME/lib 中添加文件,您可以使 jar 可供该服务器上的所有项目使用。我的意思是部署在该 tomcat 上的所有项目。

If you are making web project then here is a project structure:

TOMCAT_HOME
    -webapps
        -YourProject
             -WEB_INF
                 -lib

Now in lib folder you can have all the jars file used by that project.

By adding files in TOMCAT_HOME/lib you make jars available to all projects on that server. I mean all project deployed on that tomcat.

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