ConcurrentNavigableMap 与 MapDB 3.0.5
ConcurrentNavigableMap with MapDB 3.0.5
我使用的是最新版本的 mapDB (3.0.5),我有这组说明:
DB db = DBMaker.fileDB(new File(FILE_NAME)).closeOnJvmShutdown().make();
ConcurrentNavigableMap<String, Utente> utente = db.getTreeMap("utente");
if (!utente.keySet().contains("admin")) {
Utente user = new Utente("admin", "admin", "", "", "", "", "", "", "", "", "");
utente.put(user.getUsername(), user);
}
我在
上遇到了这个错误
db.getTreeMap("utente")
"the method getTreeMap(String) is undefined for the type DB."
使用旧版本的 MapDB (1.0.9) 这工作正常。我不明白为什么。谢谢
解决方案似乎是使用方法 get() 而不是 getTreeMap()。也许他们在这个新版本中改变了一些东西。
我使用的是最新版本的 mapDB (3.0.5),我有这组说明:
DB db = DBMaker.fileDB(new File(FILE_NAME)).closeOnJvmShutdown().make();
ConcurrentNavigableMap<String, Utente> utente = db.getTreeMap("utente");
if (!utente.keySet().contains("admin")) {
Utente user = new Utente("admin", "admin", "", "", "", "", "", "", "", "", "");
utente.put(user.getUsername(), user);
}
我在
上遇到了这个错误
db.getTreeMap("utente")
"the method getTreeMap(String) is undefined for the type DB."
使用旧版本的 MapDB (1.0.9) 这工作正常。我不明白为什么。谢谢
解决方案似乎是使用方法 get() 而不是 getTreeMap()。也许他们在这个新版本中改变了一些东西。