0
Eclipse Neon、GWT、およびsqliteを使用してWebアプリケーションを作成しています。特定のポイントにある私のwebappは、war
ディレクトリにあるデータベースに接続します(データベースをサーバに利用可能にするために必要です)。私は厳密に読み取りモードで、接続を作成しようとすると:SQLiteデータベースに接続する際のGAE制限クラスエラー
Properties config = new Properties();
config.setProperty("open_mode", "1");
Class.forName("org.sqlite.JDBC");
return DriverManager.getConnection("jdbc:sqlite:db.db");
次の例外スタックはコンソールで発生します。
java.lang.NoClassDefFoundError: java.io.FileOutputStream is a restricted class. Please see the Google App Engine developer's guide for more details.
at com.google.appengine.tools.development.agent.runtime.Runtime.reject(Runtime.java:52)
at org.sqlite.SQLiteJDBCLoader.extractAndLoadLibraryFile(SQLiteJDBCLoader.java:165)
at org.sqlite.SQLiteJDBCLoader.loadSQLiteNativeLibrary(SQLiteJDBCLoader.java:290)
at org.sqlite.SQLiteJDBCLoader.initialize(SQLiteJDBCLoader.java:65)
at org.sqlite.core.NativeDB.load(NativeDB.java:53)
at org.sqlite.core.CoreConnection.open(CoreConnection.java:211)
at org.sqlite.core.CoreConnection.<init>(CoreConnection.java:76)
at org.sqlite.jdbc3.JDBC3Connection.<init>(JDBC3Connection.java:24)
at org.sqlite.jdbc4.JDBC4Connection.<init>(JDBC4Connection.java:23)
at org.sqlite.SQLiteConnection.<init>(SQLiteConnection.java:45)
at org.sqlite.JDBC.createConnection(JDBC.java:114)
at org.sqlite.JDBC.connect(JDBC.java:88)
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
[...]
私は実際にはデータベースへの接続を開くんです。ログはコンソールに転送されるので、ファイルを保存するためのファイルは開いていないので、ファイルは作成しません。このエラーはGAEと私が制御できないJDBCローダーから発生します。
私は間違っていますか?