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 中。
当我创建数据源时,我必须设置 url 我没有得到如何定义 json 数据文件的路径。
需要指导。
我会使用JSON 解析器来读取和解析 JSON,然后使用JDBC API将数据插入数据库。
使用 JDBC API,请确保使用PreparedStatement,这意味着,PreparedStatement为每个表创建一个,然后重新使用它们。您可以做的是将它们保存在一个映射中,每个表都有一个准备好的语句 ( Map<String, PreparedStatement>)。
PreparedStatement
Map<String, PreparedStatement>