Does Java have a using statement that can be used when opening a session in hibernate?
In C# it is something like:
using (var session = new Session())
{
}
So the object goes out of scope and closes automatically.
|
Does Java have a using statement that can be used when opening a session in hibernate? In C# it is something like:
So the object goes out of scope and closes automatically. |
||||
|
|
|
Prior to version 7, Java did not have an equivalent to the Update:As of Hibernate ORM version 4.1, it appears as though Hibernate Sessions still do not implement |
|||||||
|
|
Since Java 7 it does: http://blogs.oracle.com/darcy/entry/project_coin_updated_arm_spec The syntax for the code in the question would be:
Note that |
||||
|
|
|
Technically:
|
|||||||||
|