Skip to content

Instantly share code, notes, and snippets.

@vbmendes
Created June 15, 2020 13:50
Show Gist options
  • Save vbmendes/b825ecda7522e5ca1d2c69d681d18c41 to your computer and use it in GitHub Desktop.
Save vbmendes/b825ecda7522e5ca1d2c69d681d18c41 to your computer and use it in GitHub Desktop.
@RestController
@RequestMapping("/data")
public class DataController {
@GetMapping(value = "/")
public ResponseEntity<tPage<T>> paginate(Pageable pageable) {
List<T> listFromSource = source.getList();
Page<T> page = PaginationUtil.paginateList(pageable, listFromSource);
return ResponseEntity.ok(page);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment