2

我正在尝试在 Jetty 中为我的一个应用程序配置一个 JNDI 条目。

我已经把 mysql jar: mysql-connector-java-5.1.24-bin.jar 放在 lib/ext

我编辑了 start.ini 并将 OPTIONS 更改为: OPTIONS=Server,websocket,resources,ext,plus

我还取消了注释行:

OPTIONS=jndi
OPTIONS=plus
etc/jetty-plus.xml

当我运行: service jetty start 我得到:

java.lang.ClassNotFoundException: org.eclipse.jetty.plus.jndi.Resource in file:/usr/share/jetty-distribution-9.0.4.v20130625/etc/jetty.xml

我已经检查过 plus jar 在 /usr/share/jetty/lib 中

jar tf jetty-plus-9.0.4.v20130625.jar |grep jndi/Resource.class

给出:

org/eclipse/jetty/plus/jndi/Resource.class

所以课堂就在那里。

JNDI 条目本身在 etc/jetty.xml 中定义:

...
<New id="fhxprime_test" class="org.eclipse.jetty.plus.jndi.Resource">
  <Arg><Ref refid="Server"/></Arg>
  <Arg>jdbc/fhxprime_test</Arg>
  <Arg>
    <New class="com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource">
        <Set name="Url">jdbc:mysql://hostname:3306/dbname</Set>
        <Set name="User">user</Set>
        <Set name="Password">password</Set>
    </New>
  </Arg>
</New>
</Configure>

还有其他想法吗?

4

1 回答 1

2

原来我正在修改另一台服务器上的 startup.ini

于 2013-07-24T02:57:02.977 回答