如何使用 hibernate 模板使用 hql 更新查询是 hql 语句“更新登录集 empSmartId = 48750005”+“其中 empPassword = 6328ef1675ddb7106eba8dc2661961d7”
使用 getHibernatetemplate()
当前代码:
public class LoginDaoImp extends HibernateDaoSupport implements LoginDao {
public boolean resetAttempt(Login login) {
try { login.setAttempt(0);
getHibernateTemplate().update(login);
return true;
} catch (Exception e) { e.printStackTrace(); }
return false; }
i can save whole pojo class above code work but i want to use where condition to update only hibernateTemplate to update the data