Я попытался запустить GettMapping с Почтальоном.Но это не работает, и я получаю сообщение об ошибке:
Ошибка состояния 500.SQLGrammarException: не удалось извлечь ResultSet
@GetMapping("/clients/month/{month}")
public Meter getAllMeterByMonth(@PathVariable (value = "month") String month) {
return meterRepository.findByMonth(month);
}
Репозиторий:
public interface MeterRepository extends JpaRepository<Meter, Long> {
Meter findByClientId(Long clientId);
@Query(value = "select * from meter where month = :month", nativeQuery = true)
Meter findByMonth(@Param("month")String month);
}
Клиентский объект:
@Entity
@Table(name = "clients")
public class Client {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull
@Size(max = 100)
private String name;
Метр сущности:
@Entity
@Table(name = "meters")
public class Meter{
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@NotNull
@Column(name="year")
private int year;
@NotNull
@Column(name="month")
private String month;
@NotNull
private int value;
@ManyToOne(fetch = FetchType.LAZY, optional = false)
@JoinColumn(name = "client_id", nullable = false)
@OnDelete(action = OnDeleteAction.CASCADE)
@JsonIdentityInfo(generator=ObjectIdGenerators.PropertyGenerator.class, property="id")
@JsonIdentityReference(alwaysAsId=true)
@JsonProperty("client_id")
private Client client;
Есть ли у вас какие-либо идеи по моей проблеме?