HelperController.java 1.21 KB
package com.yoho.search.restapi.others;

import java.util.Map;

import javax.servlet.http.HttpServletRequest;

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.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import com.yoho.search.aop.cache.SearchCacheAble;
import com.yoho.search.common.utils.HttpServletRequestUtils;
import com.yoho.search.models.SearchApiResult;
import com.yoho.search.service.service.IHelperService;

/**
 * Created by wangnan on 2016/12/13.
 */
@Controller
public class HelperController {

    @Autowired
    private IHelperService helperService;

    /**
     * 搜索帮助列表
     *
     * @param request
     * @return
     * @author wangnan
     */
    @SearchCacheAble(cacheInMinute = 10, cacheName = "HELPER")
    @RequestMapping(method = RequestMethod.GET, value = "/helper")
    @ResponseBody
    public SearchApiResult searchHelper(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return helperService.helper(paramMap);
    }
}