kobezzza, что то наподобие как в java?
@Controller
@RequestMapping("/appointments") // задаем начало ссылки, [url]http://site/appointments[/url]
public class AppointmentsController {
@GetMapping("/{day}") // дальше пишим обработчики http://site/appointments/{day}
public Map<String, Appointment> getForDay(@PathVariable @DateTimeFormat(iso=ISO.DATE) Date day, Model model) {
return appointmentBook.getAppointmentsForDay(day);
}
@GetMapping("/new") // [url]http://site/appointments/new[/url]
public AppointmentForm getNewForm() {
return new AppointmentForm();
}
что то в таком роде?