我在redis中有这个json值,用于键temp_se:{ \"seq\": \"[12,23] \"} .
现在,我想在一行中获得序列部分([12,23])
作为列表。
类似于下面的用法:
String ob = new ObjectMapper().readValue(tmpl.getTemplateSequenceinString(tem_se),
HashMap.class).get("seq");
然后将ob转换为list。
我能以更优化的方式做到吗?