Skip to content

Instantly share code, notes, and snippets.

@rafaelpontezup
Last active June 24, 2024 13:30
Show Gist options
  • Save rafaelpontezup/e4765384523b5e64296549cfd000eeda to your computer and use it in GitHub Desktop.
Save rafaelpontezup/e4765384523b5e64296549cfd000eeda to your computer and use it in GitHub Desktop.
Controller with a single-line method
@RestController
class CustomerController {
@Autowired
private CustomerService service;
@PostMapping("/api/customers")
public void create(@Valid @RequestBody CustomerRequest request) {
service.save(request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment