注册 登录
编程论坛 J2EE论坛

为啥hibernateTemplate.saveOrUpdate不能更新

xuzhiyong28 发布于 2014-02-21 16:37, 3173 次点击
求大神指导下,我是ssh初学者,为什么hibernateTemplate.saveOrUpdate不能执行更新操作,也没有报错。
public void AddTopicviews(int Topic_id) {
        Topic topic=(Topic)hibernateTemplate.get(Topic.class, Topic_id);
        System.out.println("topicid="+topic.getId());//可以得到ID
        topic.setViews(topic.getViews()+1);
        System.out.println("浏览次数:"+topic.getViews());//可以显示出来
        hibernateTemplate.saveOrUpdate(topic);
    }
0 回复
1