Controllers
@Controller
@RequestMapping("/")
public class HomeController@GetMapping(produces = MediaType.TEXT_HTML_VALUE)
public final String showWelcome()@RequestMapping(method = RequestMethod.GET, produces = MediaType.TEXT_HTML_VALUE)
public final String showWelcome()REST Controller
@RestController
@RequestMapping("/employees")
public class EmployeeController@GetMapping(produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
public final Iterable<Employee> getEmployees(final Pageable page)Last updated