Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つのバリアントの違い:
1.
session.createQuery("delete from Vacancy where id = :id") .setInteger("id", vacancy.getId()).executeUpdate()
;
2.session.delete(vacancy);
session.delete(vacancy);