为啥hibernateTemplate.saveOrUpdate不能更新
求大神指导下,我是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);
}