如何连接到具有给定 JNDI 名称的 Websphere 数据源?
我正在使用 Websphere Portal 7.0 并使用 RAD 8.0 创建一个 Portlet。我的 Portlet 正在尝试与远程服务器建立 db2 连接。我在本地编写了一个java程序,用于与服务器进行基本的JDBC连接,并从表中获取记录。代码工作正常;但是,当我将代码添加到我的 Portlet 以及 db2jcc4.jar时,连接不起作用。我正在使用基本的:
Connection connection = DriverManager.getConnection("jdbc:db2://server:port/db:user=user;password=pw;");
我认为使用Websphere数据源是正确的方法。我知道数据源的JNDI名称,但我没有找到有关如何建立连接的明确示例。有几个例子使用DataSource类(我输入了这个,这似乎不是来自本机java包,所以我在这里使用什么导入?)加上上下文。我遇到过这样的代码:
Context ctx = new InitialContext();
ctx.lookup("jdbc/xxxx");
...有人可以帮我分解一下吗?
编辑 1
我已经根据列出的答案更新了我的代码。我真的认为我越来越近了。这是我的getConnection()方法:
private Connection getConnection() throws SQLException {
javax.naming.InitialContext ctx = null;
javax.sql.DataSource ds = null;
System.out.println("Attempting connection..." + DateUtil.now() );
try {
ctx = new javax.naming.InitialContext();
ds = (javax.sql.DataSource) ctx.lookup("java:comp/env/jdbc/db");
connection = ds.getConnection();
} catch (NamingException e) {
System.out.println("peformanceappraisalstatus: COULDN'T CREATE CONNECTION!");
e.printStackTrace();
}
System.out.println("connection: " + connection.getClass().getName() + " at " + DateUtil.now());
return connection;
}
我的整个网页.xml文件如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>PeformanceAppraisalStatus</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<resource-ref>
<description>
Datasource connection to Db</description>
<res-ref-name>jdbc/db</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
</web-app>
我看到一个错误,描述了你们告诉我Websphere应该提示我做的事情,但没有:
SRVE0169I: Loading Web Module: PeformanceAppraisalStatus.
[8/23/11 18:08:02:166 CDT] 00000009 InjectionProc E CWNEN0044E: A resource reference binding could not be found for the jdbc/db resource reference, defined for the PeformanceAppraisalStatus component.
[8/23/11 18:08:02:169 CDT] 00000009 InjectionEngi E CWNEN0011E: The injection engine failed to process bindings for the metadata.
是的,我知道我在整个应用程序中将性能拼写为性能。
溶液
我非常接近。以下是使一切到位的缺失部分:
web.xml:
<resource-ref>
<description>
Datasource connection to db</description>
<res-ref-name>jdbc/db</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
<mapped-name>jdbc/db</mapped-name>
</resource-ref>
ibm-web-bnd.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-bnd
xmlns="http://websphere.ibm.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://websphere.ibm.com/xml/ns/javaee http://websphere.ibm.com/xml/ns/javaee/ibm-web-bnd_1_0.xsd"
version="1.0">
<virtual-host name="default_host" />
<resource-ref name="jdbc/db" binding-name="jdbc/mydatasource" />
</web-bnd>
看起来 ibm-web-bnd.xml 文件处理项目资源名称和 websphere 中数据源之间的绑定。添加行后:
<resource-ref name="jdbc/db" binding-name="jdbc/mydatasource" />
Websphere Portal似乎被安抚了。我的代码正在工作并连接到数据库。