3
votes
7answers
498 views
How to upgrade database schema built with an ORM tool?
I'm looking for a general solution for upgrading database schema with ORM tools, like JPOX or Hibernate. How do you do it in your projects?
The first solution that comes to my mind is to cr …
9
votes
7answers
710 views
Open-closed principle and Java “final” modifier.
The open-closed principle states that "Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification".
However, Joshua Bloch in his famous …
0
votes
2
votes
Java Collections using wildcard
Let's say you have an interface and two classes:
interface IResult {}
class AResult implements IResult {}
class BResult implements IResult {}
Then you have classes …
0
votes
Java inner class and static nested class
The instance of the inner class is created when instance of the outer class is created. Therefore the members and methods of the inner class have access to the members and methods of the instance ( …
