How to run a custom update using Java JPA
From time to time it is necessary to execute a query without using Java’s JPA infrastructure.
In order to do it, we have to define a NamedQuery
to execute. In this example, I will run an update against the database.
@Entity
@NamedQueries ({ …