C3p0 接続プールを使用して、H2 データベース用の Jetty 9.0.3 Web サーバー用の JNDI を実装する必要があります。H2 と C3p0 の両方の jar を JETTY-HOME ディレクトリの lib/ext に配置し、jetty-env.xml ファイルを作成しました。私のWEB-INFで。
WEB-INF/jetty-env.xml
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<New id="DSTest" class="org.eclipse.jetty.plus.jndi.Resource">
<Arg>jdbc/testDS</Arg>
<Arg>
<New class="com.mchange.v2.c3p0.ComboPooledDataSource">
<Set name="driverClass">org.h2.Driver</Set>
<Set name="jdbcUrl">jdbc:h2:/C:/data/test</Set>
<Set name="user">sa</Set>
<Set name="password"></Set>
</New>
</Arg>
</New>
</Configure>
以下のクラスのメインメソッドから Jetty サーバーのインスタンスを作成することにより、plus 構成を有効にして組み込みの jetty を実装しています。
WebServer.java
import java.io.File;
import javax.naming.Context;
import javax.naming.InitialContext;
import javax.sql.DataSource;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.util.resource.ResourceCollection;
import org.eclipse.jetty.webapp.WebAppContext;
public class WebServer
{
public static void main(String[] args)
{
// Creating Jetty Server on port 8080
Server webServer = new Server(8080);
org.eclipse.jetty.webapp.Configuration.ClassList classlist = org.eclipse.jetty.webapp.Configuration.ClassList.setServerDefault(webServer);
classlist.addAfter("org.eclipse.jetty.webapp.FragmentConfiguration", "org.eclipse.jetty.plus.webapp.EnvConfiguration",
"org.eclipse.jetty.plus.webapp.PlusConfiguration");
WebAppContext wac = new WebAppContext();
// Set WAR Path to WebAppcontext from disk
File warPath = new File("C:/Users/XXXX/src/com/UI");
wac.setWar(warPath.getAbsolutePath());
wac.setContextPath("/");
wac.setBaseResource(new ResourceCollection(new String[] { "./WebContent", "build/classes" }));
webServer.setHandler(wac);
try
{
InitialContext ic = new InitialContext();
DataSource myDS = (DataSource)ic.lookup("java:comp/env/jdbc/testDS");
System.out.println("param ::: "+myDS);
webServer.start();
webServer.join();
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
次のエラーが表示されます。これを解決するにはどうすればよいですか?
javax.naming.NameNotFoundException; remaining name 'env/jdbc/testDS'
at org.eclipse.jetty.jndi.NamingContext.lookup(NamingContext.java:505)
at org.eclipse.jetty.jndi.NamingContext.lookup(NamingContext.java:536)
at org.eclipse.jetty.jndi.NamingContext.lookup(NamingContext.java:551)
at org.eclipse.jetty.jndi.java.javaRootURLContext.lookup(javaRootURLContext.java:117)
at javax.naming.InitialContext.lookup(InitialContext.java:411)
at com.server.WebServer.main(WebServer.java:37)