0

在 eclipise 中,如何在启动这样的 se 应用程序时消除该警告消息

....
Properties p = new Properties();
p.setProperty("java.naming.factory.initial", "com.sun.enterprise.naming.SerialInitContextFactory");
p.setProperty("java.naming.provider.url", "localhost:3700");
Context context = new InitialContext(p);
....

04-avr.-2012 11:23:39 com.sun.enterprise.v3.server.CommonClassLoaderServiceImpl findDerbyClient
INFO: Cannot find javadb client jar file, derby jdbc driver will not be available by default.
4

1 回答 1

1

“javadb 客户端 jar 文件”名为“derbyclient.jar”,您应该在 javadb 安装中找到它,或者您可以从http://db.apache.org/derby获取它

于 2012-04-04T14:22:46.380 回答