Subversion Repositories SmartDukaan

Rev

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

Rev 23273 Rev 23568
Line 3... Line 3...
3
import java.time.LocalDateTime;
3
import java.time.LocalDateTime;
4
import java.util.Map;
4
import java.util.Map;
5
 
5
 
6
import javax.servlet.http.HttpServletRequest;
6
import javax.servlet.http.HttpServletRequest;
7
 
7
 
8
import org.slf4j.Logger;
8
import org.apache.logging.log4j.Logger;
9
import org.slf4j.LoggerFactory;
9
import org.apache.logging.log4j.LogManager;
10
import org.springframework.beans.factory.annotation.Autowired;
10
import org.springframework.beans.factory.annotation.Autowired;
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.transaction.annotation.Transactional;
13
import org.springframework.transaction.annotation.Transactional;
14
import org.springframework.web.bind.annotation.RequestMapping;
14
import org.springframework.web.bind.annotation.RequestMapping;
Line 28... Line 28...
28
public class ShopController {
28
public class ShopController {
29
	
29
	
30
	@Autowired
30
	@Autowired
31
	private ResponseSender<?> responseSender;
31
	private ResponseSender<?> responseSender;
32
	
32
	
33
	private static final Logger LOGGER=LoggerFactory.getLogger(ShopController.class);
33
	private static final Logger LOGGER=LogManager.getLogger(ShopController.class);
34
	
34
	
35
	@Autowired
35
	@Autowired
36
	ShopRepository shopRepository;
36
	ShopRepository shopRepository;
37
	
37
	
38
	@Autowired
38
	@Autowired