Authored by hugufei

search.json切到新的接口

... ... @@ -49,7 +49,7 @@ public class SearchController {
* @param request
* @return
*/
@RequestMapping(method = RequestMethod.GET, value = "/search")
@RequestMapping(method = RequestMethod.GET, value = "/searchOld")
@ResponseBody
public Map<String, Object> searchProducts(HttpServletRequest request) {
Map<String, String> paramMap = this.transParamType(request);
... ... @@ -66,7 +66,7 @@ public class SearchController {
* @param request
* @return
*/
@RequestMapping(method = RequestMethod.GET, value = "/searchNew")
@RequestMapping(method = RequestMethod.GET, value = "/search")
@ResponseBody
public Map<String, Object> searchProductsNew(HttpServletRequest request) {
Map<String, String> paramMap = this.transParamType(request);
... ...