当前位置: 代码迷 >> java >> Jetty中的javax.naming.NameNotFoundException但Tomcat中没有。 怎么解决?
  详细解决方案

Jetty中的javax.naming.NameNotFoundException但Tomcat中没有。 怎么解决?

热度:94   发布时间:2023-08-02 10:20:21.0

我有一个这样的示例代码:

ConnectionPool.dataSource = (DataSource) initialContext.lookup("java:comp/env/jdbc/murach");

webapp / META-INF / context.xml中

<?xml version="1.0" encoding="UTF-8"?>
<Context>
<Resource name="jdbc/murach"
          auth="Container"
          type="javax.sql.DataSource"
          username="root"
          --- Rest of the text ---/>
</Context>

当我将这个Web应用程序部署到Tomcat时,数据库连接很好,但是当我使用Jetty插件尝试使用Jetty时: jetty:run-war

<plugin>
    <groupId>org.eclipse.jetty</groupId>
    <artifactId>jetty-maven-plugin</artifactId>
    <version>9.2.1.v20140609</version>
    <configuration>
        <scanIntervalSeconds>2</scanIntervalSeconds>
        <httpConnector>
            <port>8082</port>
        </httpConnector>
        <webApp>
            <contextPath>/</contextPath>
        </webApp>
    </configuration> 
 </plugin>

我正进入(状态:

 javax.naming.NameNotFoundException; remaining name 'jdbc/murach'

我怎么能用码头做这个呢?

我也尝试过添加

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

到web.xml,但现在我得到:

java.lang.IllegalStateException: Nothing to bind for name javax.sql.DataSource/default

应将Jetty配置为使用JNDI并将JNDI资源部署到其中。

尝试添加到maven插件配置:

<configuration>
   <!-- ... -->
   <jettyEnvXml>src/main/dev-path-to-jetty-env-xml/jetty-env.xml</jettyEnvXml>
   <webXml>src/main/dev-path-to-web-xml/web.xml</webXml>
</configuration>

文件jetty-env.xml看起来像(仅作为示例;使用了bonecp数据源):

<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
    <New id="murachDataSource" class="org.eclipse.jetty.plus.jndi.Resource">
        <Arg>jdbc/murach</Arg>

        <Arg>
            <New class="com.jolbox.bonecp.BoneCPDataSource">
                <Set name="driverClass">org.h2.Driver</Set>
                <Set name="jdbcUrl">jdbc:h2:~/murach/test</Set>
                <Set name="username">sa</Set>
                <Set name="password"/>

                <Set name="partitionCount">4</Set>
                <Set name="minConnectionsPerPartition">5</Set>
                <Set name="acquireIncrement">5</Set>
                <Set name="closeConnectionWatch">false</Set>
            </New>
        </Arg>
    </New>
</Configure>

文件web.xml应包含行:

<resource-ref>
    <description>My DataSource Reference</description>
    <res-ref-name>jdbc/murach</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
</resource-ref>

我想把它添加为评论,但我还不允许。
svaor的答案是正确的,因为没有定义将JNDI资源放在J2EE规范中的标准位置。
因此,context.xml文件是特定于tomcat的,而jetty对此一无所知。

J2EE标准在/WEB-INF/web.xml文件中提供了一组标准元素来引用资源; 必须在特定于应用程序服务器的配置中定义这些元素中引用的资源。

您是否将resource-ref添加到web.xml?

 <resource-ref>
    <description>XX</description>
    <res-ref-name>jdbc/murach</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
  </resource-ref>
  相关解决方案