postgreSQL JDBC 驱动程序的 .jar 文件。如何配置?
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
的第 2 节和第 3 节清楚地记录了配置 PostgreSQL JDBC 驱动程序所需执行的操作PostgreSQL JDBC 接口。
这包括:
如果您有本手册未涵盖的具体问题,请更新您的问题。
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:
If you have a specific question that is not covered by the manual, please update your Question.
如果您正在制作 Web 项目,那么这里是一个项目结构:
现在在 lib 文件夹中,您可以拥有该项目使用的所有 jar 文件。
通过在
TOMCAT_HOME/lib
中添加文件,您可以使 jar 可供该服务器上的所有项目使用。我的意思是部署在该 tomcat 上的所有项目。If you are making web project then here is a project structure:
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.