Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
json データをインメモリ データベース h2 にロードしようとしています。
データソースを作成するときに、json データ ファイルのパスを定義する方法がわからない URL を設定する必要があります。
ガイドが必要です。
JSON パーサーを使用してJSONを読み取って解析し、JDBC APIを使用してデータをデータベースに挿入します。
JDBC API では、必ず を使用してくださいPreparedStatement。つまり、PreparedStatementテーブルごとに 1 つ作成し、それらを再利用してください。できることは、テーブルごとに 1 つの準備済みステートメントをマップに保持することです ( Map<String, PreparedStatement>)。
PreparedStatement
Map<String, PreparedStatement>