BasicDataController.java 1.11 KB
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;
	}
}