I'm using eclipse persistence and have a method that generates a select query to get a list.
I need to have this query use the equivalent of with UR to prevent locking issues.
I have tried all kinds of query hints and stuff but nothing seems to work.
How can I make my JQL query use WITH UR via a QueryHint or something?
WITH URcan be a symptom of a design problem in the way that data is modeled and stored. Usually the correct answer lies in the rearranging of the data model.