- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
JDBC Tutorial建议使用 DataSource
对象来获取数据库连接而不是使用 DriverManager
类。引用 Connecting with DataSource Objects页面:
DataSource
objects … the preferred means of getting a connection to a data source.
DataSource
在我的 Java 应用程序中以编程方式?或者我必须实现该
DataSource
接口(interface)自己?
最佳答案
tl;博士
PGSimpleDataSource
与来自 jdbc.postgresql.org 的 JDBC 驱动程序捆绑在一起的类实现了 DataSource
界面。在 PGSimpleDataSource
中配置您的数据库连接详细信息对象,并作为 DataSource
传递对象。
PGSimpleDataSource ds = new PGSimpleDataSource() ;
ds.setServerName( "localhost" );
ds.setDatabaseName( "your_db_name_here" );
ds.setUser( "scott" );
ds.setPassword( "tiger" );
根据需要使用该对象与数据库建立连接。使用方便
try-with-resources语法。
try
(
Connection conn = ds.getConnection() ;
)
{ … }
JDBC驱动的实现
DataSource
的实现界面。
DriverManager
的一个薄包装器。 .每次拨打 DataSource::getConnection
在这种实现的对象上,您将获得一个新的数据库连接。 DataSource
实现。但作者不建议实际使用他们的
connection pool type在生产中;如果您想要池,请使用第三方连接池库。我们忽略了
the XA type .
DataSource
的简单的每次重新连接的实现:
org.postgresql.ds.PGSimpleDataSource
org.postgresql.ds.common.BaseDataSource
.
DataSource
,以便我们可以拨打
various setter methods .请参阅
Data Sources and JNDI 上的示例代码和讨论页。
PGSimpleDataSource ds = new PGSimpleDataSource() ; // Empty instance.
ds.setServerName( "localhost" ); // The value `localhost` means the Postgres cluster running locally on the same machine.
ds.setDatabaseName( "testdb" ); // A connection to Postgres must be made to a specific database rather than to the server as a whole. You likely have an initial database created named `public`.
ds.setUser( "testuser" ); // Or use the super-user 'postgres' for user name if you installed Postgres with defaults and have not yet created user(s) for your application.
ds.setPassword( "password" ); // You would not really use 'password' as a password, would you?
通常我会使用这些单独的 setter 方法。或者,您可以构造一个字符串,一个 URL,其中包含要在
DataSource
上设置的各种信息。一口气。如果您想走那条路,请调用
setUrl
.
ds.setPortNumber( 6787 ) ; // If not using the default '5432'.
ds.setApplicationName( "whatever" ) ; // Identify the application making this connection to the database. Also a clever way to back-door some information to the Postgres server, as you can encode small values into this string for later parsing.
ds.setConnectTimeout( … ) ; // The timeout value used for socket connect operations, in whole seconds. If connecting to the server takes longer than this value, the connection is broken.
ds.setSocketTimeout( … ) ; // The timeout value used for socket read operations. If reading from the server takes longer than this value, the connection is closed. This can be used as both a brute force global query timeout and a method of detecting network problems.
ds.setReadOnly( boolean ) ; // Puts this connection in read-only mode.
如果使用
TLS (以前称为 SSL)来加密数据库连接以防止窃听或恶意操纵,为此使用多个 setter 。
setProperty( PGProperty property, String value )
.
PGSimpleDataSource
后,您可以简单地将
DataSource
传递给代码库的其余部分对象。这使您的代码库免受更改为另一个的冲击
DataSource
实现或更改为
another JDBC driver .
DataSource dataSource = ds ; // Upcasting from concrete class to interface.
return dataSource ;
使用数据源
DataSource
非常简单,因为它仅提供两种方法,即
getConnection
上的一对变体。获得
Connection
您的数据库工作的对象。
Connection conn = dataSource.getConnection() ;
完成您的
Connection
后,最佳做法是确保关闭它。要么使用
try-with-resources syntax自动关闭连接,或显式关闭它。
conn.close() ;
请记住,一个
DataSource
实际上不是数据源。一个
DataSource
确实是生成/访问数据库连接的来源。在我看来,这是用词不当,因为我认为它是
ConnectionSource
.
DataSource
与您的数据库对话的时间仅足以使用用户名和密码登录。登录后,您可以使用
Connection
对象与数据库交互。
DataSource
配置后,您希望保留该
DataSource
对象周围,缓存。无需重复重新配置。
implementation should be written to be thread-safe .您可以拨打
getConnection
随时随地。
ServletContextListener
的类界面。在该类(class)中,您将建立您的
DataSource
Web 应用程序启动时的对象。从那里你可以将对象存储在
ServletContext
中。对象通过传递给
setAttribute
.
Context
是“网络应用程序”的技术术语。拨打电话取回
getAttribute
并转换到
DataSource
.
DataSource
可能存储在
JNDI 中- 合规的实现。一些
Servlet containers如
Apache Tomcat可以提供 JNDI 实现。一些组织使用服务器,例如
LDAP server .注册和取回您的
DataSource
使用 JNDI 的对象在 Stack Overflow 上的许多其他问题和答案中都有介绍。
关于postgresql - 以编程方式为 Postgres JDBC 生成一个 `DataSource` 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45091981/
我一直在使用 Databricks JDBC 驱动程序版本 2.6.22,并尝试升级到 2.6.27。但是,升级后我收到消息说我的 JDBC URL 在尝试连接时无效。这些 JDBC URL 与旧版本
似乎JDBC Spec没有详细说明数据源连接池中alive or idle connections的准确含义。它只是具体实现吗? DBCP2如何或 HikariCP实际检查连接状态? 下面没有事件事务
在“XPages 扩展库”一书中,第 12 章,第 409 页有一个 JDBC 连接文件的例子: org.apache.derby.jdbc.EmbeddedDriver jdbc:
谁能告诉我 jdbc 是如何工作的?它如何设法与 DBMS 通信?因为 DBMS 可能是用其他编程语言编写的。 最佳答案 与数据库的通信由 JDBC 驱动程序处理,这些驱动程序可以使用各种策略与数据库
我想知道是否有人可以帮助我解决这个问题。我在尝试使用 Spring JDBC 编写代码时遇到了一个问题。当我运行服务器时,我收到了标题中提到的消息。我google了一下,有人说你应该导入ojdbc.j
我只是想运行一个示例 hivejdbc 客户端程序,但它给我一个内存不足的错误。 import java.sql.SQLException; import java.sql.Connection; i
我需要将 Google Spreadsheet 与 JasperReports Server 一起使用,为此我需要一个用于 Google Spreadsheet 的 JDBC 连接器。 我找到了这个
我需要将大量行(最多 100,000 行)插入到 6 个不同的 DB2 表中。我正在使用 Java JDBC 来完成它。我想在单个数据库事务中完成所有操作,以便在遇到任何问题时可以回滚整个操作。在某处
再次为自己是 Jmeter 新手道歉——我对 JDBC 请求有点困惑——我在过去的 3 个小时里浏览了这个网站上的帖子——但我找不到任何相关的东西(除非我我错过了一些东西)。 我的环境:Jmeter
我们正在创建一个带有 MySQL 后端的 XPages 应用程序。应用程序将被多个客户使用。每个都有自己的 NSF 数据库和相应的 MySQL 数据库。每个客户都有自己的 MySQL 用户名。我们正在
昨天我遇到了一个大问题。在我当前的项目中,我使用 Oracle 的 JDBC 的 ojdbc6 实现进行连接,但我还需要处理例如 oracle 8 数据库,这对于这个 JAR 是完全不可能的。 你会说
这个问题在这里已经有了答案: Closing JDBC Connections in Pool (3 个答案) 关闭 2 年前。 假设我有以下代码 DataSource source = (Data
我有 Informix 数据库,时间戳字段定义为 YEAR TO SECOND。 当我使用 JDBC rs.getString(column) 显示此字段时,它使用带毫秒的格式,因此此字段如下所示:
看完本教程之后; https://www.youtube.com/watch?v=ZnI_rlrei1s 我正在尝试使用logstash和jdbc获取我的本地主机mysql(使用laravel val
有人给我小费。 { "type": "jdbc", "jdbc": { "driver": "com.microsoft.sqlserver.jdbc.SQLServerDriver"
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我正在尝试从mysql表中将1600万个文档(47gb)索引为elasticsearch索引。我正在使用jparante's elasticsearch jdbc river执行此操作。但是,在创建河
我正在尝试使用JDBC河将我的MySQL数据库复制到我的ElasticSearch索引中。 但是,每当我启动服务器时,与MySQL表的count(*)相比,创建的文档数量就增加了一倍。我通过清空索引并
使用新的logstash jdbc 连接器: https://www.elastic.co/guide/en/logstash/current/plugins-inputs-jdbc.html后续的
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我是一名优秀的程序员,十分优秀!