JDK 1.7 +
sh gradlew build
java -jar build/lib/*.war
sh gradlew eclipse
@RestController
public class CustomerRestController {
@Autowired
private CustomerService customerService;
@RequestMapping(value="/rest/customers/{sn}", method=RequestMethod.GET)
public Customer getCustomer(@PathVariable("sn") String sn) {
return customerService.getCustomer(sn);
}
}