gpt4 book ai didi

java - Jetty JNDI 与 Oracle 错误 : IllegalStateException: Nothing to bind for name jdbc/replaydev

转载 作者:太空宇宙 更新时间:2023-11-04 10:36:30 24 4
gpt4 key购买 nike

我编写了一个 JAX-RS REST-API,它从 Oracle 获取行。
为此,我使用了 JNDI因为我正在使用Jetty 。但在部署 WAR 文件时,我收到以下错误:

Caused by:
java.lang.IllegalStateException: Nothing to bind for name jdbc/replaydev
at org.eclipse.jetty.plus.webapp.PlusDescriptorProcessor.bindEntry(PlusDescriptorProcessor.java:914)

我的 web.xml 有以下条目:

<resource-ref>
<res-ref-name>jdbc/replaydev</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

WEB-INF/jetty-env.xml 具有以下条目:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd">

<Configure id='wac' class="org.eclipse.jetty.webapp.WebAppContext">
<New id="replaydev" class="org.eclipse.jetty.plus.jndi.Resource">
<Arg><Ref refid='wac'/></Arg>
<Arg>jdbc/replaydev</Arg>
<Arg>
<New class="oracle.jdbc.pool.OracleDataSource">
<Set name="URL">jdbc:oracle:thin://@MY.ORACLE.SERVER:1555/JOBCTL</Set>
<Set name="User">XYZ</Set>
<Set name="Password">rockOn</Set>
<Set name="connectionCachingEnabled">true</Set>
</New>
</Arg>
</New>
</Configure>

我的 Java 代码如下:

Context initContext = new InitialContext();
ds = (DataSource)initContext.lookup("java:/comp/env/jdbc/replaydev");

con = ds.getConnection();
Class.forName("oracle.jdbc.OracleDriver");

POM.xml 添加了以下依赖项:

<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.2.11.v20150529</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
<version>9.2.11.v20150529</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-plus</artifactId>
<version>9.2.11.v20150529</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-jndi</artifactId>
<version>9.2.11.v20150529</version>
</dependency>

我什至尝试添加 id web.xml 条目中的标签如:<resource-ref id="replaydev">....</resource-ref>对于jetty-env.xml <New id="replaydev" class="org.eclipse.jetty.plus.jndi.Resource"> 。它也不起作用。

我错过了什么吗?

最佳答案

配置看起来不错。我猜你正在使用maven。确保您正在部署经过这些修改的 jetty.xml 版本。例如:mvn clean install

关于java - Jetty JNDI 与 Oracle 错误 : IllegalStateException: Nothing to bind for name jdbc/replaydev,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49401431/

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