我正在尝试在WebSphere Application Server Liberty上使用配置为JNDI的数据源,但是却遇到以下错误:
javax.naming.NameNotFoundException: java:comp/env/jdbc/myapp/master
Websphere应用程序服务器中数据源的配置为:
<dataSource commitOrRollbackOnCleanup="commit" id="jdbc/myapp/master" jdbcDriverRef="ojdbc7" jndiName="jdbc/myapp/master">
<properties.oracle URL="jdbc:oracle:thin:@127.0.0.1:1521:xe" oracleRACXARecoveryDelay="0" password="xxxxxxxx" user="app_master">
</properties.oracle>
<connectionManager maxPoolSize="50"/>
</dataSource>
通过以下代码在servlet(jndi = jdbc / myapp / master)中建立与数据库的连接:
Context initCtx = new InitialContext();
Context envCtx = (Context) initCtx.lookup("java:comp/env");
DataSource ds = (DataSource) envCtx.lookup(jndi);
setConnection(ds.getConnection());
System.out.println(getConnection().toString() );
关于我在做什么错的任何建议?
此致
答案 0 :(得分:3)
java:comp/env
需要资源参考。您可以使用以下选项来解决该问题:
1)使用资源注入-而不是直接(通过InitialContext)查找资源,只需在servlet类中添加以下内容
@Resource(lookup = "jdbc/myapp/master", name="jdbc/myapp/master")
private DataSource dataSource;
2)在web.xml
中定义资源引用,例如
<resource-ref>
<description>my datasource</description>
<res-ref-name>jdbc/myapp/master</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>CONTAINER</res-auth>
</resource-ref>
或者您也可以通过代码中的注释来创建引用。
3)使用直接JNDI,不带参考(不是Java EE最佳实践)
DataSource ds = (DataSource) initCtx.lookup("jdbc/myapp/master");
答案 1 :(得分:1)
除了在其他答案中已经说明的内容之外,还应该检查是否已启用jndi-1.0功能。这是查找在Liberty中不起作用的常见原因。
例如,在server.xml中,
<featureManager>
<feature>jdbc-4.2</feature>
<feature>jndi-1.0</feature>
... other features that you use
</featureManager>
如果这还不足以使其正常工作,则还应该检查dataSource所依赖的资源的配置,例如ID为ojdbc7的jdbcDriver(在提供的配置代码段中引用)。