Skip to content

Instantly share code, notes, and snippets.

@HDBandit
Created May 24, 2016 10:41
Show Gist options
  • Save HDBandit/489c4ec86b9d520edb0368b562b9bdb5 to your computer and use it in GitHub Desktop.
Save HDBandit/489c4ec86b9d520edb0368b562b9bdb5 to your computer and use it in GitHub Desktop.
@RestController
@RequestMapping("/{tenantId}/invoice")
public class InvoiceController {
@Autowired
private InvoiceRepository invoiceRepository;
@RequestMapping(method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
public List<Invoice> invoices() {
return Lists.newArrayList(invoiceRepository.findAll());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment