私は今まで非常にうまく機能していたmavenとjettyを使った本当にシンプルなwebappプロジェクトを持っています。しかし、データベース接続が常にタイムアウトするため、JNDI を使用して MySQL 接続プールをセットアップする必要があります。
まず最初に、私の pom.xml の関連コンテンツを次に示します。
<modelVersion>4.0.0</modelVersion>
...
<packaging>war</packaging>
...
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty-version>8.1.0.v20120127</jetty-version>
</properties>
<dependencies>
...
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.20</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty-version}</version>
<type>maven-plugin</type>
</dependency>
</dependencies>
...
<build>
<plugins>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty-version}</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
</configuration>
</plugin>
</plugins>
...
</build>
ここで、次の内容でフォルダー /src/main/webapp/WEB-INF に jetty-env.xml を作成しました。
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<New id="project-db" class="org.eclipse.jetty.plus.jndi.Resource">
<Arg>jdbc/db</Arg>
<Arg>
<New class="com.mysql.jdbc.jdbc2.optional.MysqlConnectionPoolDataSource">
<Set name="url">jdbc:mysql://www.example.com:3306/mydb</Set>
<Set name="username">dbuser</Set>
<Set name="password">dbpass</Set>
</New>
</Arg>
</New>
</Configure>
しかし、問題は、jetty-maven-plugin がゴールで起動に失敗したため、この接続が機能するかどうかをテストすることさえできないことです。
mvn jetty:run
次のエラーで:
WARN:oejw.WebAppContext:Failed startup of context o.m.j.p.JettyWebAppContext
{/,file:/D:/documents/programmierung/workspace/battleships-trunk/src/main/webapp/}
,file:/D:/documents/programmierung/workspace/battleships-trunk/src/main/webapp/
java.lang.IllegalArgumentException: Object of class
'org.mortbay.jetty.plugin.JettyWebAppContext' is not of type
'org.eclipse.jetty.webapp.WebAppContext'.
Object Class and type Class are from different loaders.
では、どうすればこれを機能させることができますか?WebSocket のサポートが必要であり、リモートの本稼働サーバーが Jetty 8 を実行するため、Jetty バージョン 8.x を使用せざるを得ません。
編集 Pavel Veller の回答の前に、次のことを試しました。組み立てられた戦争をリモートの jetty8 サーバーにデプロイしましたが、以前のエラーが次のように表示されるという同じエラーのみが発生しました。
java.lang.IllegalArgumentException: Object of class
'org.eclipse.jetty.webapp.WebAppContext' is not of type
'org.eclipse.jetty.webapp.WebAppContext'.
Object Class and type Class are from different loaders.
そのため、複数のクラスローダーが競合しているように見えます。
EDIT2 Pavel のリクエストに応じて、ここで Dropbox で 見つけることができる単純化された webapp でエラーを再現しました。これは、圧縮された eclipse maven プロジェクトです。