gpt4 book ai didi

jdbc - 使用 WebSphere Liberty Profile 8.5 设置数据源

转载 作者:行者123 更新时间:2023-12-04 05:39:44 25 4
gpt4 key购买 nike

我的 Web 应用程序从 JNDI 获取数据源:

javax.naming.InitialContext ctx = new javax.naming.InitialContext();
javax.sql.DataSource ds = (javax.sql.DataSource)
ctx.lookup("java:comp/env/jdbc/db");

在应用程序的 WEB-INF/web.xml , 我有:
<resource-ref>
<description>DataSource</description>
<res-ref-name>jdbc/db</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

在应用程序的 WEB-INF/ibm-web-bnd.xml , 我有:
<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/db"/>
</web-bnd>

在 WebSphere Liberty Profile 的 server.xml 中,我有(保留相关部分):
<server description="new server">

<featureManager>
<feature>jsp-2.2</feature>
<feature>jdbc-4.0</feature>
</featureManager>

<library id="oracle-lib">
<fileset dir="lib" includes="ojdbc5_g.jar"/>
</library>

<dataSource jndiName="jdbc/db" jdbcDriverRef="oracle-driver" type="javax.sql.DataSource">
<jdbcDriver libraryRef="oracle-lib" id="oracle-driver"/>
<connectionManager numConnectionsPerThreadLocal="10" id="ConnectionManager" minPoolSize="1"/>
<properties user="user" password="password"
url="jdbc:oracle:thin:@//db-server:1521/db"/>
</dataSource>

</server>

当应用程序尝试从 JNDI 获取数据源时,它会失败并出现以下错误:
CWNEN0030E: The @Resource factory encountered a problem getting
the object instance jdbc/oracle binding object. The exception message was:
failed to resolve jdbc/oracle to javax.sql.DataSource:
javax.naming.NameNotFoundException:
Intermediate context does not exist: jdbc/oracle

我在这里缺少什么?

最佳答案

我们在 Liberty 8.5.5 上使用 DB2,并且在 server.xml 中有

<dataSource id="db2" isolationLevel="TRANSACTION_READ_COMMITTED" jndiName="jdbc/db2" type="javax.sql.DataSource">
<jdbcDriver>
<library>
<fileset dir="/usr/lib/java/ibm-db2-universal-driver" includes="db2jcc4.jar, db2jcc_license_cisuz.jar, db2jcc_license_cu.jar"/>
</library>
</jdbcDriver>

<properties.db2.jcc databaseName="DB2T" portNumber="21020" serverName="db2t.lvm.de"/>
<containerAuthData password="{xor}KzspMC04" user="tdvorg"/>
</dataSource>

也许有帮助。

罗伯特

关于jdbc - 使用 WebSphere Liberty Profile 8.5 设置数据源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17822106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com