我有 ConcurrentSkipListMap 具有不敏感的关键特征:
public static ConcurrentMap<String, GooglePlayGame> games = new ConcurrentSkipListMap<String, GooglePlayGame>(String.CASE_INSENSITIVE_ORDER);
如果我第一次运行我的应用程序并将添加到地图用户请求,我完成了 --games.put("Oddmar", ...) --,如果用户在此之后将请求 --/game oddmar (odDmar 或其他)-- 它会起作用,但是.. 我总是在静态块的开始时从 json 文件加载我的地图:
static {
TypeFactory typeFactory = mapper.getTypeFactory();
MapType mapType = typeFactory.constructMapType(ConcurrentSkipListMap.class, String.class, GooglePlayGame.class);
try {
games = mapper.readValue(new File(
"gpgames_library.json"), mapType);
} catch (IOException e) {
e.printStackTrace();
}
}
如果在“重新启动”后用户将尝试 /game oddmar,它将不起作用 - 只有 /game Oddmar。但为什么?如果在应用程序中,我总是从我的变量(而不是文件)中读取地图。