Weblogic设置JDBC共享

发布于 2024-12-01 11:20:23 字数 679 浏览 2 评论 0原文

我正在使用 Weblogic 并设置了一个 JDBC 驱动程序以允许服务连接到数据库。
其他客户端也可以出于其他目的访问该数据库。
我现在想要做的是与连接到数据库的其他客户端建立“SHARED”连接。
我读到以下语法可以让我实现这一目标: jdbc:oracle:thin:<用户>/@(协议 = TCP)(主机 = <主机>)(端口 = <端口>)))(CONNECT_DATA = (SID =) (服务器=共享))) 并且可以让我与其他常规连接共享 JDBC 连接。

这是真的吗?
在 weblogic 中哪里设置这些参数?

我当前正在使用按以下方式配置的 JDBC 驱动程序( SERVICES->JDBC->DATA SOURCES-> 连接池(选项卡)):

URL: jdbc:bea:oracle://[dbIP]:1521

驱动程序类名称:

weblogic.jdbc.oracle.OracleDriver

属性:

user=ETL
portNumber=1521
SID=LIVDEV1
serverName=[dbIP]

谢谢

I'm using Weblogic and I set a JDBC driver to allow a service to get a connection to the db.
This DB is also reachable by other clients for other purposes.
What I want to do now, it's to make the JDBC connections "SHARED" with the other clients that connect to the database.
I read that the follow syntax let me achieve this:
jdbc:oracle:thin:<USER>/@(PROTOCOL = TCP)(HOST = <HOST>)(PORT = <PORT>)))(CONNECT_DATA = (SID = <SID>) (SERVER = SHARED)))
and would let me have the JDBC connections shared with the others regular connections.

Is it true ?
Where to set such parameters in weblogic ?

I'm currently using the JDBC driver ( SERVICES->JDBC->DATA SOURCES-> connection pool (tab) ) configured in the following manner:

URL:
jdbc:bea:oracle://[dbIP]:1521

Driver Class Name:

weblogic.jdbc.oracle.OracleDriver

Properties:

user=ETL
portNumber=1521
SID=LIVDEV1
serverName=[dbIP]

Thanks

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

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

发布评论

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

评论(1

云归处 2024-12-08 11:20:23

Oracle 的 URL 应为 jdbc:oracle:thin:@[host][:port]:SID。
不需要在属性中再次设置这些参数,但是需要设置用户
对于密码,WebLogic 已经为其提供了一个独立的字段。它将由 WebLogic 加密。

您可以参考http://download.oracle。 com/docs/cd/E13222_01/wls/docs81/jdbc/programming.html#1053561

The URL of Oracle should be jdbc:oracle:thin:@[host][:port]:SID.
No need to set these parameters in properties again, but you need to set the user
And for password, WebLogic already provides a standalone field for it. It will be encrypted by WebLogic.

You can reference http://download.oracle.com/docs/cd/E13222_01/wls/docs81/jdbc/programming.html#1053561

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