Subversion Repositories SmartDukaan

Rev

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

Rev 22927 Rev 23568
Line 1... Line 1...
1
package com.spice.profitmandi.web.controller;
1
package com.spice.profitmandi.web.controller;
2
 
2
 
3
import javax.servlet.http.HttpServletRequest;
3
import javax.servlet.http.HttpServletRequest;
4
 
4
 
5
import org.slf4j.Logger;
5
import org.apache.logging.log4j.Logger;
6
import org.slf4j.LoggerFactory;
6
import org.apache.logging.log4j.LogManager;
7
import org.springframework.beans.factory.annotation.Autowired;
7
import org.springframework.beans.factory.annotation.Autowired;
8
import org.springframework.http.ResponseEntity;
8
import org.springframework.http.ResponseEntity;
9
import org.springframework.stereotype.Controller;
9
import org.springframework.stereotype.Controller;
10
import org.springframework.transaction.annotation.Transactional;
10
import org.springframework.transaction.annotation.Transactional;
11
import org.springframework.web.bind.annotation.RequestMapping;
11
import org.springframework.web.bind.annotation.RequestMapping;
Line 23... Line 23...
23
 
23
 
24
@Controller
24
@Controller
25
@Transactional
25
@Transactional
26
public class CustomerController {
26
public class CustomerController {
27
	
27
	
28
	private static final Logger LOGGER = LoggerFactory.getLogger(CustomerController.class);
28
	private static final Logger LOGGER = LogManager.getLogger(CustomerController.class);
29
	
29
	
30
	@Autowired
30
	@Autowired
31
	private ResponseSender<?> responseSender;
31
	private ResponseSender<?> responseSender;
32
	
32
	
33
	@Autowired
33
	@Autowired