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

时间:2015-07-18 08:55:11

标签: java maven tomcat jetty jndi

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

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 Plugin尝试使用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

3 个答案:

答案 0 :(得分:7)

应该将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>

答案 1 :(得分:4)

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

http://docs.jboss.org/jbossweb/3.0.x/jndi-resources-howto.html

  

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

答案 2 :(得分:3)

您是否将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>