Subversion Repositories SmartDukaan

Rev

Rev 23022 | Rev 24995 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23022 Rev 23568
Line 2... Line 2...
2
 
2
 
3
import java.io.IOException;
3
import java.io.IOException;
4
import java.net.URISyntaxException;
4
import java.net.URISyntaxException;
5
import java.util.List;
5
import java.util.List;
6
 
6
 
7
import org.slf4j.Logger;
7
import org.apache.logging.log4j.Logger;
8
import org.slf4j.LoggerFactory;
8
import org.apache.logging.log4j.LogManager;
9
import org.springframework.beans.factory.annotation.Autowired;
9
import org.springframework.beans.factory.annotation.Autowired;
10
import org.springframework.http.MediaType;
10
import org.springframework.http.MediaType;
11
import org.springframework.http.ResponseEntity;
11
import org.springframework.http.ResponseEntity;
12
import org.springframework.stereotype.Controller;
12
import org.springframework.stereotype.Controller;
13
import org.springframework.web.bind.annotation.RequestMapping;
13
import org.springframework.web.bind.annotation.RequestMapping;
Line 31... Line 31...
31
import io.swagger.annotations.ApiOperation;
31
import io.swagger.annotations.ApiOperation;
32
 
32
 
33
@Controller
33
@Controller
34
public class SolrSearchController {
34
public class SolrSearchController {
35
 
35
 
36
	private static final Logger logger=LoggerFactory.getLogger(SolrSearchController.class);
36
	private static final Logger logger=LogManager.getLogger(SolrSearchController.class);
37
 
37
 
38
	@Autowired
38
	@Autowired
39
	private SolrService solrService;
39
	private SolrService solrService;
40
	
40
	
41
	@Autowired
41
	@Autowired