Код: Выделить всё
Airline
Flight Number
Departure
Arrival
Date
Seats available
Price
Код: Выделить всё
@Controller
@RequestMapping("/booking")
public class BookingController {
@Autowired
private FlightService flightService;
@GetMapping("/booking-page")
public String getBookingPage(@RequestParam("flightNumber") String flightNumber) {
flightService.findFlightByFlightNumber(flightNumber);
return "bookFlight";
}
}
Подробнее здесь: https://stackoverflow.com/questions/784 ... pring-boot