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.
我正在查看 derby 数据库并找到设置 derby 主目录的属性。
h2 数据库中是否有derby.system.home设置主目录的属性?
derby.system.home
是的,H2 支持系统属性h2.baseDir,即使我认为我实际上并不推荐使用它。相反,我建议在数据库 URL 中使用硬编码路径,例如,jdbc:h2:/data/dbs/test或者使用相对于用户主目录的路径,例如jdbc:h2:~/dbs/test.
h2.baseDir
jdbc:h2:/data/dbs/test
jdbc:h2:~/dbs/test