3

如何使用 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
4

2 回答 2

0

我知道这个问题已经很老了,但是,这个解决方案可以帮助别人......

这是更新数据库中记录的技巧。

诀窍是首先从数据库中获取所需的记录,使用关联 POJO 类的 setter 方法更新所需的字段,然后调用hibernateTemplate.save(Object entity)方法,如下所示:-

public void updateUser(User user, String password) {
    @SuppressWarnings("unchecked")
    List<User> results = (List<User>) hibernateTemplate
            .find("FROM User where username = ?", new Object[] { new String(user.getUsername()) });

    User userToBeUpdate = results.get(0);
    userToBeUpdate.setPassword(password);
    hibernateTemplate.save(userToBeUpdate);
}

就我而言,这是可行的解决方案。

于 2015-04-07T06:28:42.720 回答
0

你会看起来像这样

public class LoginDaoImp extends HibernateDaoSupport implements LoginDao 
{ 
    public boolean resetAttempt(Login login) 
    { 
        try 
        { 
            // you should create method for login to retrived based on password
            //Remember getting login  by password is not correct way, Instead you you should use primary key
            //Getting persisted object of Login
            Login persisted_login = getLoginByPassword(6328ef1675ddb7106eba8dc2661961d7);

            //Setting value in persisted object of Login
            persisted_login.setEmpSmartId (48750005); 
            getHibernateTemplate().update(persisted_login); 
            return true; 
        } catch (Exception e) { 
            e.printStackTrace(); 
        } 
        return false; 
    }
}
于 2013-04-13T10:32:27.593 回答