Weblogic设置JDBC共享
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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