0 votes
in Hibernate by

What’s the difference between Session and SessionFactory?

1 Answer

0 votes
by

A Session provides the first-level cache and is a single-threaded, short-lived object. A SessionFactory provides the second-level cache and is immutable and shared by all Sessions. It lives until Hibernate is running.

...