【发布时间】:2017-09-13 17:23:58
【问题描述】:
我有一个 REST API,我想调用一个从 csv 文件创建 TreeMap 的方法,我想将 TreeMap 用于每个 API 调用的其余部分。所以我只想调用该方法来设置 TreeMap并希望将 TreeMap 用于其余的 API 调用。
我创建 TreeMap 的方法是
public void createTreeMap(){
CSVReader reader = new CSVReader(new FileReader("C:\\Users\\result.csv"), ',' , '"' , 1);
TreeMap <Integer,ArrayList<Long>> result=new TreeMap <Integer,ArrayList<Long>>();
//Read CSV line by line and use the string array as you want
String[] nextLine;
while ((nextLine = reader.readNext()) != null) {
if (nextLine != null) {
//Verifying the read data here
ArrayList<Long> result_01 = new ArrayList<Long>();
for(int k=0;k<nextLine[1].replace("[", "").replace("]", "").replace(" ", "").split(",").length;k++){
result_01.add(Long.parseLong(nextLine[1].replace("[", "").replace("]", "").replace(" ", "").split(",")[k]));
}
result.put(Integer.parseInt(nextLine[0]), result_01);
}
}
}
下面是Rest api Controller
@RestController
public class HomeController {
@RequestMapping(value="/api/sid",produces={MediaType.APPLICATION_JSON_VALUE},method=RequestMethod.GET)
public ResponseEntity<Map<String, List<Model>>> getid(@RequestParam("sid") int sid) {
Map<String, List<Model>> Map = new HashMap<String, Object>();
List<Model> model=new List<Model>();
model=get_model();
Map.put("hi",model)
return new ResponseEntity<Map<String, List<Model>>>(Map,HttpStatus.OK);
}
@ResponseBody
public List<Model> get_model(){
List list =new List<Model>();
//here I have to use the treemap
return list;
}
}
我可以在每次调用 api 时创建树形图。但我只需要创建一次并在响应正文 get_model 方法中访问它。感谢任何帮助。
【问题讨论】:
-
使用缓存怎么样?
-
我应该在哪里定义缓存?
-
如何使用单例模式,即在实例化之前检查树图是否为空。
-
@RKR Jaydeep Rajput 的回答应该是一个例子。
标签: java rest spring-boot singleton spring-restcontroller