Код моего рейса:
import java.sql.Timestamp;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
import org.springframework.format.annotation.DateTimeFormat;
@Entity
@Table(name = "FLIGHT")
public class Flight
{
@Column(name = "flight_number")
private String flightNumber;
@Column(name = "operating_airlines")
private String operatingAirlines;
@Column(name = "arrival_city")
private String arrivalCity;
@Column(name = "departure_city")
private String departureCity;
@Column(name = "date_of_departure")
@DateTimeFormat(pattern = "dd-MM-yyyy")
private Date dateOfDeparture;
@Column(name = "estimated_departure_time")
private Timestamp estimatedDepartureTime;
и содержит методы получения и установки для этого:
и в моем репозитории полета (Интерфейс) У меня есть:
package com.nischal.flightreservation.repos;
import java.util.Date;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import com.nischal.flightreservation.entities.Flight;
public interface FlightRepository extends JpaRepository<Flight, Integer> {
@Query(value = "select * from FLIGHT where departure_city=:departureCity and
arrival_city=:arrivalCity and date_of_departure=:dateOfDeparture", nativeQuery = true)
List<Flight> findFlights(@Param("departureCity") String from, @Param("arrivalCity") String
to, @Param("dateOfDeparture") Date departureDate);
}
, и они правильно сопоставлены с таблицами базы данных.
и в моих FlightControllers у меня есть:
import java.util.Date;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import com.nischal.flightreservation.entities.Flight;
import com.nischal.flightreservation.repos.FlightRepository;
@Controller
public class FlightController {
@Autowired
private FlightRepository flightRepository;
@RequestMapping("/findFlights")
public String findFlights(@RequestParam(required = false,name = "from") String from,
@RequestParam(required = false,name = "to") String to,@RequestParam(required = false, name =
"departureDate") @DateTimeFormat(pattern = "dd-MM-yyyy") Date departureDate ,ModelMap
modelMap)
{
List<Flight> flights = flightRepository.findFlights(from, to, departureDate);
modelMap.addAttribute("flights",flights);
return "displayFlights";
}
}
В моем findflights. jsp У меня есть следующий код:
<code><%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Search the Flights</title>
</head>
<body>
<form action = "findFlights" method = "post">
<pre>
From: <input type = "text" name = "from"/>
To : <input type = "text" name = "to"/>
Departure Date:<input type = "date" name = "departureDate"/>
<input type = "submit" value = "Search"/>
и displayFlights отвечает за отображение доступных рейсов на основе поиска, а код:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Available Flights</title>
</head>
<body>
<h2>Flights</h2>
<table>
<tr>
<th>Airlines</th>
<th>Departure City</th>
<th>Arrival City</th>
<th>Departure Time</th>
</tr>
<c:forEach items = "${flights}" var = "flight">
<tr>
<td>flight.operatingAirlines</td>
<td>flight.departureCity</td>
<td>flight.arrivalCity</td>
<td>flight.estimatedDepartureTime</td>
<td><a href = "showCompleteReservation?flightId=${flight.id }">Select</a>
</tr>
</c:forEach>
</table>
Но всякий раз, когда я нажимаю кнопку «Поиск», появляются ошибки:
Если кому-то нужна более подробная информация, тогда я также могу укажите ссылку на github этого проекта.