Hibernate: Dirty Checking and Only Update of Dirty Attributes?
- by jens
Hello Experts,
in "good old JDBC days" I wrote a lot of SQL Queries that did very targeted updates of only the "attributes/members" that were actually changed:
For Example having an object with the following members:
public String name;
public String address;
public Date date;
If only date was changed in some Business Method I would only…