BasicDataController.java
1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.bsth.web;
import java.util.HashMap;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import com.bsth.service.BasicDataService;
//@Controller
@RequestMapping("/basic/*")
public class BasicDataController {
private final static Logger log = LoggerFactory.getLogger(BasicDataController.class);
@Autowired
private BasicDataService basicDataService;
@RequestMapping(value = "/refresh")
public @ResponseBody Map<String, Object> refresh(@RequestParam Map<String, Object> map) {
Map<String, Object> result = new HashMap<String, Object>();
try {
basicDataService.loadBasicData();
result.put("errCode", 0);
} catch (Exception e) {
result.put("errCode", 1);
result.put("errMsg", "刷新基础数据异常");
log.error("刷新基础数据异常", e);
}
return result;
}
}