I have to choose between a JPA or JDBC (including Spring-JDBC) based solution for my project.
The context is a Java application doing read only access on a fixed data model.
The data model is event-oriented : for instance, every 5 seconds, a car position and state will be recorded.
My first feeling is that JDBC fits more our needs, but i'm new to JPA. What solution is adapted according to you and why ?
Duplicate update: my biggest concern is about the context (read-only with fixed data model) to know if JPA is fit to my project or if it's too complex/not adapted for my project