3
votes
JPA/Hibernate in Java SE 6, Best Practices for data access
I'm not sure what's considered the best approach to this, but at my workplace, we have based most of our Hibernate interaction on these articles:
…
2
votes
How can I access private class members in Java?
Some methods I've used in the past:
Make _ix protected, create a subclass where you implement a setter
Make a constructor taking the value for _ix as a parameter
Use …
